云数据库 GAUSSDB-GS_STATIO_ALL_PARTITIONS
GS_STATIO_ALL_PARTITIONS
GS_STATIO_ALL_PARTITIONS视图包含当前数据库中每个分区表分区的I/O统计信息,此视图信息由gs_statio_get_all_partitions_stats()函数查询得到。
名称 |
类型 |
描述 |
---|---|---|
partition_oid |
oid |
分区OID。 |
schemaname |
name |
该分区模式名。 |
relname |
name |
该分区所在表的表名。 |
partition_name |
name |
该分区所在一级分区名。 |
sub_partition_name |
name |
该分区所在二级分区名。 |
heap_blks_read |
bigint |
从该分区中读取的磁盘块数。 |
heap_blks_hit |
bigint |
该分区缓存命中数。 |
idx_blks_read |
bigint |
从分区中所有索引读取的磁盘块数。 |
idx_blks_hit |
bigint |
分区中所有索引命中缓存数。 |
toast_blks_read |
bigint |
该分区的TOAST表分区读取的磁盘块数(如果存在)。 |
toast_blks_hit |
bigint |
该分区的TOAST表分区命中缓冲区数(如果存在)。 |
tidx_blks_read |
bigint |
该分区的TOAST表分区索引读取的磁盘块数(如果存在)。 |
tidx_blks_hit |
bigint |
该分区的TOAST表分区索引命中缓冲区数(如果存在)。 |