diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-10-28 14:23:42 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-10-28 14:23:42 +0900 |
commit | 61ecea45e50bcd3b87d4e905719e63e41d6321ce (patch) | |
tree | 5b5a990deee225a50f1972f80c97bd65fd704b91 | |
parent | 68ac9cf2499236996f3d4bf31f7f16d5bd3c77af (diff) | |
download | postgresql-61ecea45e50bcd3b87d4e905719e63e41d6321ce.tar.gz postgresql-61ecea45e50bcd3b87d4e905719e63e41d6321ce.zip |
Doc: Add missing step for pg_stat_progress_cluster
There is a step to track when the new heap is written, but this was
missing in the documentation.
Author: Noriyoshi Shinoda
Discussion: https://postgr.es/m/AT5PR8401MB06447FAE88E1592754E958B8EE640@AT5PR8401MB0644.NAMPRD84.PROD.OUTLOOK.COM
Backpatch-through: 12
-rw-r--r-- | doc/src/sgml/monitoring.sgml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 828e9084dd7..e6c49eebade 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -4079,6 +4079,12 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid, </entry> </row> <row> + <entry><literal>writing new heap</literal></entry> + <entry> + <command>CLUSTER</command> is currently writing the new heap. + </entry> + </row> + <row> <entry><literal>swapping relation files</literal></entry> <entry> The command is currently swapping newly-built files into place. |