feat: add pk-index compaction resolver and apply stream operators - #26564
Open
silver-ymz wants to merge 1 commit into
Open
feat: add pk-index compaction resolver and apply stream operators#26564silver-ymz wants to merge 1 commit into
silver-ymz wants to merge 1 commit into
Conversation
Member
Author
This was referenced Aug 4, 2026
silver-ymz
marked this pull request as ready for review
August 4, 2026 07:42
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
silver-ymz
changed the base branch from
silver/pk-index-compaction-refactor
to
graphite-base/26564
August 5, 2026 04:46
chenzl25
self-requested a review
August 5, 2026 06:09
silver-ymz
force-pushed
the
graphite-base/26564
branch
from
August 5, 2026 06:41
192b7bc to
1a9401a
Compare
silver-ymz
force-pushed
the
silver/pk-index-compaction-operators
branch
from
August 5, 2026 06:41
7bebb6e to
bd91e4d
Compare
silver-ymz
changed the base branch from
graphite-base/26564
to
silver/pk-index-compaction-refactor
August 5, 2026 06:41
Signed-off-by: Mingzhuo Yin <yinmingzhuo@gmail.com>
silver-ymz
force-pushed
the
silver/pk-index-compaction-operators
branch
from
August 5, 2026 08:52
bd91e4d to
cc13ded
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

I hereby agree to the terms of the RisingWave Labs, Inc. Contributor License Agreement.
What's changed and what's your intention?
Stack: PR 3 of 6 for iceberg pk-index compaction (← #26563 | → #26565)
Adds two new stream executors that form the core pk-index compaction operator pipeline, plus the proto definitions they need.
CompactionResolverExecutor: resolves which position delete files to compact based on delete file count thresholds and partition groupingCompactionApplyExecutor: receives compaction task outputs and rewrites data files by merging position deletes into new data filesfrom_proto/compaction_resolver.rs: proto deserialization for the new executorproto/stream_plan.proto: addIcebergPkIndexBarrierMutationand new stream node typesproto/stream_service.proto: addPB_ICEBERG_PK_INDEX_SINK_ROLE_COMPACTION_RESOLVERexecutor/mod.rs: register newNodeBodyvariants.IcebergPkIndexBarrierMutationis used for the next PR.The executors are defined but not yet wired into the task system — PR 4 does that.
Checklist