更新时间:2025-07-10 GMT+08:00
GLOBAL_ROW_TABLE_IO_STAT
GLOBAL_ROW_TABLE_IO_STAT视图提供当前数据库所有行存表的IO统计数据。其字段的名称、类型和顺序与GS_ROW_TABLE_IO_STAT视图相同,具体的字段请参考表1。各统计字段为所有节点对应字段之和。
| 名称 | 类型 | 描述 |
|---|---|---|
| schemaname | name | 表的命名空间。 |
| relname | name | 表的名称。 |
| heap_read | bigint | 堆逻辑读块数。 |
| heap_hit | bigint | 堆命中块数。 |
| idx_read | bigint | 索引逻辑读块数。 |
| idx_hit | bigint | 索引命中块数。 |
| toast_read | bigint | TOAST表逻辑读块数。 |
| toast_hit | bigint | TOAST表命中块数。 |
| tidx_read | bigint | TOAST表Index逻辑读个数。 |
| tidx_hit | bigint | TOAST表Index命中个数。 |