[Feature] Support Parquet row-group copy fast path for append-only compaction

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

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

評価

難易度
5/5
見積もり時間
1週間以上
初心者へのやさしさ
20/100
issue の種類
機能追加
明瞭さ
おおむね明確
活発さ
停滞
技術スタック
java

調査の方向性

まず、すでに提出されている PR #9660 と、issue で言及されている paimon-format ParquetRowGroupCopyChecker を確認します。append-only コンパクションのエントリポイントと、3 つの row-group-copy オプションを追跡します。Parquet の対象バッチが高速パスを使用し、対象外のバッチが安全にフォールバックし、指定された行数とメタデータの挙動がカバーされていれば完了です。

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

説明

enhancement
Search before asking
  • I searched in the issues and found nothing similar.
Motivation

Compaction of append-only tables currently rewrites every data file: all rows are decoded,
passed through the writer pipeline, and re-encoded, even when the input files are perfectly
mergeable as-is. For Parquet (the default file format) this is unnecessarily expensive, because
row groups are self-contained compressed units — a set of Parquet files that share the same
schema and codec can be merged by concatenating their row groups directly and only rewriting
the file footer, skipping row decode/re-encode entirely.

In our production environment (Flink and Spark compaction jobs on append-only tables), a
row-group copy fast path reduced compaction kernel task time by ~59–68% with zero fallbacks.
Local micro benchmarks show 6.4–6.9× for narrow numeric tables and up to 24–32× for wide string tables (zstd, 8 MB row groups).

Solution

An opt-in fast path in append-only compaction, controlled by
append.compaction.row-group-copy.enabled (default false). When enabled, each compaction
batch is checked for eligibility; if every input file qualifies, the batch is merged via
row-group copy, otherwise it transparently falls back to the traditional rewrite path. The
fast path therefore never changes behavior for ineligible tables and is safe to enable
unconditionally.

A batch is eligible only when all of the following hold for every input file:

  • table format is Parquet, and the file carries the table's current schema (same schema id
    and identical Parquet message type);
  • uniform compression codec across all row groups and columns, matching the table's
    configured codec;
  • no deletion vectors, no row tracking / data evolution, no file index or bloom filter
    configured, no extra files, no embedded index, no partial-column writes (writeCols);
  • file source is APPEND or COMPACT;
  • file is not encrypted and was not written with Parquet writer v2 (BYTE_STREAM_SPLIT
    encoding).

Value stats of output files reuse the input files' stats when a file is copied in full, and
are recomputed from row-group metadata for partially copied files (when target-file-size
splitting cuts a file). Output row count is verified against input row count as a safety net.

Parquet-specific compatibility checks live in paimon-format (ParquetRowGroupCopyChecker),
keeping paimon-core free of Parquet internals.

Options:

  • append.compaction.row-group-copy.enabled (default false): enable the fast path.
  • append.compaction.row-group-copy.preserve-page-index (default false): preserve
    ColumnIndex/OffsetIndex so page-level predicate pruning keeps working on compacted files,
    at the cost of reading and rewriting page indexes during compaction.
  • append.compaction.row-group-copy.footer-read.parallelism (default 1): bounded
    concurrent footer reads while preparing a compaction batch (hard cap 8).
Anything else?

No response

Are you willing to submit a PR?
  • I'm willing to submit a PR!

Already submitted: #9660.

主要言語
Java
スター
3.4k
フォーク
1.4k
平均マージ
1日 14時間
マージ済み PR(30日)
468

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

このリポジトリのコントリビューションガイドは索引されていません

はじめの一歩

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

apache/paimon のほかの issue

apache/paimon の issue をすべて見る

似ている issue

Java の issue をもっと見る

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

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