云数据库 GAUSSDB-文件组织结构

时间:2024-11-13 10:04:55

文件组织结构

如需查询当前回滚段使用的存储方式是页式或段页式,可以查询系统表。当前仅支持页式。

示例:

gaussdb=# SELECT * FROM gs_global_config where name like '%undostoragetype%';
      name       |  value
-----------------+---------
 undostoragetype | page
(1 row)
  • 当回滚段使用的存储方式为页式:
    • txn page所在文件组织结构:
      $node_dir/undo/{permanent|unlogged|temp}/$undo_zone_id.meta.$segno
    • undo row所在文件组织结构:
      $node_dir/undo/{permanent|unlogged|temp}/$undo_zone_id.$segno
support.huaweicloud.com/fg-gaussdb-dist-v8/gaussdb-18-0129.html