Movatterモバイル変換


[0]ホーム

URL:



Facebook
Postgres Pro
Facebook
Downloads
52.31. pg_stats_vacuum_indexes
Prev UpChapter 52. System ViewsHome Next

52.31. pg_stats_vacuum_indexes#

The viewpg_stats_vacuum_indexes will contain one row for each index in the current database (including TOAST table indexes), showing statistics about vacuuming that specific index.

Table 52.31. pg_stats_vacuum_indexes Columns

Column Type

Description

relidoid

OID of an index

schemaname

Name of the schema this index is in

relnamename

Name of this index

total_blks_readint8

Number of database blocks read by vacuum operations performed on this index

total_blks_hitint8

Number of times database blocks were found in the buffer cache by vacuum operations performed on this index

total_blks_dirtiedint8

Number of database blocks dirtied by vacuum operations performed on this index

total_blks_writtenint8

Number of database blocks written by vacuum operations performed on this index

rel_blks_readint8

Number of blocks vacuum operations read from this index

rel_blks_hitint8

Number of times blocks of this index were already found in the buffer cache by vacuum operations, so that a read was not necessary (this only includes hits in the Postgres Pro buffer cache, not the operating system's file system cache)

pages_deletedint8

Number of pages deleted by vacuum operations performed on this index

tuples_deletedint8

Number of dead tuples vacuum operations deleted from this index

wal_recordsint8

Total number of WAL records generated by vacuum operations performed on this index

wal_fpiint8

Total number of WAL full page images generated by vacuum operations performed on this index

wal_bytesnumeric

Total amount of WAL bytes generated by vacuum operations performed on this index

blk_read_timeint8

Time spent reading database blocks by vacuum operations performed on this index, in milliseconds (iftrack_io_timing is enabled, otherwise zero)

blk_write_timeint8

Time spent writing database blocks by vacuum operations performed on this index, in milliseconds (iftrack_io_timing is enabled, otherwise zero)

delay_timefloat8

Time spent sleeping in a vacuum delay point by vacuum operations performed on this index, in milliseconds (seeSection 18.4.4 for details)

system_timefloat8

System CPU time of vacuuming this index, in milliseconds

user_timefloat8

User CPU time of vacuuming this index, in milliseconds

total_timefloat8

Total time of vacuuming this index, in milliseconds

interruptsinteger

Number of times vacuum operations performed on this index were interrupted on any errors



Prev Up Next
52.30. pg_stats_vacuum_database Home 52.32. pg_stats_vacuum_tables
pdfepub
Go to Postgres Pro Standard 17
By continuing to browse this website, you agree to the use of cookies. Go toPrivacy Policy.

[8]ページ先頭

©2009-2025 Movatter.jp