云数据库 GAUSSDB-SUMMARY_STAT_ALL_TABLES
SUMMARY_STAT_ALL_TABLES
显示集群内数据库中每个表(包括TOAST表)的状态信息的汇总求和结果(在CN节点使用。对每个节点中表的状态信息汇总求和,其中timestamp类型字段不进行求和,仅取所有节点中该字段的最新值),如表1所示。
名称 |
类型 |
描述 |
---|---|---|
schemaname |
name |
该表所在的Schema名。 |
relname |
name |
表名。 |
seq_scan |
numeric |
该表发起的顺序扫描数。 |
seq_tup_read |
numeric |
顺序扫描抓取的活跃行数。 |
idx_scan |
numeric |
该表发起的索引扫描数。 |
idx_tup_fetch |
numeric |
索引扫描抓取的活跃行数。 |
n_tup_ins |
numeric |
插入行数。 |
n_tup_upd |
numeric |
更新行数。 |
n_tup_del |
numeric |
删除行数。 |
n_tup_hot_upd |
numeric |
HOT更新行数(即没有更新索引列的行数)。 |
n_live_tup |
numeric |
估计活跃行数。 |
n_dead_tup |
numeric |
估计不活跃行数。 |
last_vacuum |
timestamp with time zone |
最后一次该表是手动清理的(不计算VACUUM FULL)的时间。 |
last_autovacuum |
timestamp with time zone |
上次被autovacuum守护线程清理的时间。 |
last_analyze |
timestamp with time zone |
上次手动分析该表的时间。 |
last_autoanalyze |
timestamp with time zone |
上次被autovacuum守护线程分析时间。 |
vacuum_count |
numeric |
该表被手动清理的次数(不计算VACUUM FULL)。 |
autovacuum_count |
numeric |
该表被autovacuum清理的次数。 |
analyze_count |
numeric |
该表被手动分析的次数。 |
autoanalyze_count |
numeric |
该表被autovacuum守护线程分析的次数。 |
last_updated |
timestamp with time zone |
视图中该表监控数据最后一次更新的时间。 |