云数据库 GAUSSDB-GS_STAT_XACT_ALL_PARTITIONS
GS_STAT_XACT_ALL_PARTITIONS
GS_STAT_XACT_ALL_PARTITIONS视图显示命名空间中所有分区表分区的事务状态信息,此视图信息由gs_stat_get_xact_all_partitions_stats()函数查询得到。
名称 |
类型 |
描述 |
---|---|---|
partition_oid |
oid |
分区的OID。 |
schemaname |
name |
该分区的模式名。 |
relname |
name |
该分区所在表的表名。 |
partition_name |
name |
该分区所在一级分区名。 |
sub_partition_name |
name |
该分区所在二级分区名。分布式不支持二级分区,值为NULL。 |
seq_scan |
bigint |
该分区发起的顺序扫描数。 |
seq_tup_read |
bigint |
顺序扫描抓取的活跃行数。 |
idx_scan |
bigint |
该分区发起的索引扫描数。 |
idx_tup_fetch |
bigint |
索引扫描抓取的活跃行数。 |
n_tup_ins |
bigint |
插入行数。 |
n_tup_upd |
bigint |
更新行数。 |
n_tup_del |
bigint |
删除行数。 |
n_tup_hot_upd |
bigint |
热更新行数(比如没有更新所需的单独索引)。 |