27.4. Progress Reporting
PostgreSQL has the ability to report the progress of certain commands during command execution. Currently, the only commands which support progress reporting are CREATE INDEX
, VACUUM
and CLUSTER
. This may be expanded in the future.
27.4.1. CREATE INDEX Progress Reporting
Whenever CREATE INDEX
or REINDEX
is running, the pg_stat_progress_create_index
view will contain one row for each backend that is currently creating indexes. The tables below describe the information that will be reported and provide information about how to interpret it.
Table 27.22. pg_stat_progress_create_index
View
pg_stat_progress_create_index
ViewColumn | Type | Description |
|
| Process ID of backend. |
|
| OID of the database to which this backend is connected. |
|
| Name of the database to which this backend is connected. |
|
| OID of the table on which the index is being created. |
|
| OID of the index being created or reindexed. During a non-concurrent |
|
| The command that is running: |
|
| Current processing phase of index creation. See Table 27.23. |
|
| Total number of lockers to wait for, when applicable. |
|
| Number of lockers already waited for. |
|
| Process ID of the locker currently being waited for. |
|
| Total number of blocks to be processed in the current phase. |
|
| Number of blocks already processed in the current phase. |
|
| Total number of tuples to be processed in the current phase. |
|
| Number of tuples already processed in the current phase. |
|
| When creating an index on a partitioned table, this column is set to the total number of partitions on which the index is to be created. |
|
| When creating an index on a partitioned table, this column is set to the number of partitions on which the index has been completed. |
Table 27.23. CREATE INDEX Phases
Phase | Description |
|
|
|
|
| The index is being built by the access method-specific code. In this phase, access methods that support progress reporting fill in their own progress data, and the subphase is indicated in this column. Typically, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27.4.2. VACUUM Progress Reporting
Whenever VACUUM
is running, the pg_stat_progress_vacuum
view will contain one row for each backend (including autovacuum worker processes) that is currently vacuuming. The tables below describe the information that will be reported and provide information about how to interpret it. Progress for VACUUM FULL
commands is reported via pg_stat_progress_cluster
because both VACUUM FULL
and CLUSTER
rewrite the table, while regular VACUUM
only modifies it in place. See Section 27.4.3.
Table 27.24. pg_stat_progress_vacuum
View
pg_stat_progress_vacuum
ViewColumn | Type | Description |
|
| Process ID of backend. |
|
| OID of the database to which this backend is connected. |
|
| Name of the database to which this backend is connected. |
|
| OID of the table being vacuumed. |
|
| Current processing phase of vacuum. See Table 27.25. |
|
| Total number of heap blocks in the table. This number is reported as of the beginning of the scan; blocks added later will not be (and need not be) visited by this |
|
| Number of heap blocks scanned. Because the visibility map is used to optimize scans, some blocks will be skipped without inspection; skipped blocks are included in this total, so that this number will eventually become equal to |
|
| Number of heap blocks vacuumed. Unless the table has no indexes, this counter only advances when the phase is |
|
| Number of completed index vacuum cycles. |
|
| Number of dead tuples that we can store before needing to perform an index vacuum cycle, based on maintenance_work_mem. |
|
| Number of dead tuples collected since the last index vacuum cycle. |
Table 27.25. VACUUM Phases
Phase | Description |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27.4.3. CLUSTER Progress Reporting
Whenever CLUSTER
or VACUUM FULL
is running, the pg_stat_progress_cluster
view will contain a row for each backend that is currently running either command. The tables below describe the information that will be reported and provide information about how to interpret it.
Table 27.26. pg_stat_progress_cluster
View
pg_stat_progress_cluster
ViewColumn | Type | Description |
|
| Process ID of backend. |
|
| OID of the database to which this backend is connected. |
|
| Name of the database to which this backend is connected. |
|
| OID of the table being clustered. |
|
| The command that is running. Either |
|
| Current processing phase. See Table 27.27. |
|
| If the table is being scanned using an index, this is the OID of the index being used; otherwise, it is zero. |
|
| Number of heap tuples scanned. This counter only advances when the phase is |
|
| Number of heap tuples written. This counter only advances when the phase is |
|
| Total number of heap blocks in the table. This number is reported as of the beginning of |
|
| Number of heap blocks scanned. This counter only advances when the phase is |
|
| Number of indexes rebuilt. This counter only advances when the phase is |
Table 27.27. CLUSTER and VACUUM FULL Phases
Phase | Description |
| The command is preparing to begin scanning the heap. This phase is expected to be very brief. |
| The command is currently scanning the table using a sequential scan. |
|
|
|
|
|
|
| The command is currently swapping newly-built files into place. |
| The command is currently rebuilding an index. |
| The command is performing final cleanup. When this phase is completed, |
Last updated