Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

pg_stat_io: track I/O for Append-Optimized (AO/AOCO) tables

オープン
#1,834 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
5/5
見積もり時間
1週間以上
初心者へのやさしさ
35/100
issue の種類
機能追加
明瞭さ
説明が足りない
活発さ
静か
技術スタック
c, postgresql

調査の方向性

まず pgstat_io.c、pgstat.h、および system_views.sql 内の pg_stat_io 定義を読み、次に src/backend/access/appendonly と src/backend/access/aocs の BufferedRead と BufferedAppend を調べます。それらのインストルメンテーションを bufmgr.c、localbuf.c、md.c と比較します。AO/AOCO の読み取り、書き込み、拡張、fsync が pg_stat_io と関連する gp_stat_io ビューで一貫して表現されていれば完了です。

索引モデルが issue の本文から書いたものです。

説明

Summary

pg_stat_io (inherited from the PostgreSQL 16 merge) gives per-backend,
per-IO-object, per-context I/O statistics, and Cloudberry already exposes
cluster-wide rollups via gp_stat_io and gp_stat_io_summary. However, the
underlying counters are only incremented on the shared-buffer-manager path
(bufmgr.c, localbuf.c, md.c). Append-Optimized (AO) and
Append-Optimized Column-Oriented (AOCO) table I/O is not counted at all.

Because AO/AOCO storage bypasses the shared buffer pool and uses its own
BufferedRead / BufferedAppend layer, reads, writes, and extends against
these tables are invisible to pg_stat_io. For a workload built primarily on
AO/AOCO tables — which is common in Cloudberry analytics deployments — the view
significantly under-reports actual physical I/O.

Current behavior

  • grep -rn pgstat_count_io_op src/backend/access/appendonly src/backend/access/aocs
    returns no matches — the AO/AOCO read/write paths contain no
    instrumentation.
  • I/O counters are populated only from bufmgr.c, localbuf.c, and md.c,
    i.e. the heap / index / temp-relation paths inherited from PostgreSQL.
  • As a result, pg_stat_io (and gp_stat_io / gp_stat_io_summary) reflect
    heap/index/catalog I/O but omit the storage format that defines Cloudberry.

Expected behavior

I/O performed by AO/AOCO tables should be reflected in pg_stat_io, so that
operators can observe physical I/O for the storage types they actually use.

Proposed approach (for discussion)

Instrument the AO/AOCO buffered I/O layer with pgstat_count_io_op[_time]()
calls, analogous to the existing md.c instrumentation:

  • Reads — in the AO/AOCO BufferedRead path (bufmgr equivalent for AO),
    count IOOP_READ.
  • Writes / extends — in the BufferedAppend / segment-file extend path,
    count IOOP_WRITE and IOOP_EXTEND.
  • fsync — where AO segment files are flushed (register_dirty_segment /
    mdimmedsync equivalents).

Open design questions:

  1. IOOBJECT classification. AO/AOCO data does not live in shared buffers,
    so IOOBJECT_RELATION (which today implies buffer-pool involvement) may be
    misleading. Options: reuse IOOBJECT_RELATION, or add a new IO object
    (e.g. IOOBJECT_AO_RELATION) to keep AO I/O distinguishable. Adding an enum
    value changes the fixed-size shared stats struct and the
    pg_stat_io / pg_stat_get_io() output shape, so it needs care.
  2. IOCONTEXT mapping. AO has no shared-buffer eviction/reuse semantics, so
    hits / evictions / reuses are not meaningful; only
    reads / writes / extends / fsyncs would be populated. Decide how the
    non-applicable columns are reported (zero vs. NULL).
  3. op_bytes. AO varblocks are variable-sized rather than BLCKSZ-aligned,
    so the per-op byte accounting differs from the heap path.

Impact / motivation

  • Observability parity: AO/AOCO is the primary storage format for many
    Cloudberry analytics workloads, yet is the one format pg_stat_io can't see.
  • Capacity planning & troubleshooting: physical read/write volume for AO tables
    is currently only obtainable indirectly.

Notes

  • Affects: main.
  • Related existing surfaces: pg_stat_io view (system_views.sql),
    gp_stat_io / gp_stat_io_summary (system_views_gp*.sql),
    pgstat_io.c, pgstat.h IO enums.
主要言語
C
スター
1.4k
フォーク
248
平均マージ
4日 10時間
マージ済み PR(30日)
40

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

apache/cloudberry のほかの issue

apache/cloudberry の issue をすべて見る

似ている issue

C の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。