GLOBAL_STATIO_ALL_TABLES

GLOBAL_STATIO_ALL_TABLES视图将包含各节点的数据库中每个表(包括TOAST表)的I/O的统计。

示例:

openGauss=# select * from DBE_PERF.GLOBAL_STATIO_ALL_TABLES;
 node_name | relid |     schemaname     |            relname            | heap_blks_read | heap_blks_hit | idx_blks_read | idx_blks_hit | toast_blks_read | toast_blks_hit | tidx_blks_read | tidx_blks_hit 
-----------+-------+--------------------+-------------------------------+----------------+---------------+---------------+--------------+-----------------+----------------+----------------+---------------

表 1 GLOBAL_STATIO_ALL_TABLES字段

名称

类型

描述

node_name

name

数据库进程名称。

relid

oid

表OID。

schemaname

name

该表模式名。

relname

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表索引命中缓冲区数(如果存在)。

意见反馈
编组 3备份
    openGauss 2024-10-16 00:54:44
    取消