[v26.1.x] compaction: swap std::count() for cursor approach (MANUAL BACKPORT) - #30760
Merged
WillemKauf merged 2 commits intoJun 11, 2026
Merged
Conversation
When records are removed, the filter rebuilds the batch and, for each record, ran `std::count` over the kept-deltas vector to decide whether to keep it, which is quadratic in the record count. Since the kept deltas are produced by a forward scan of the same batch, they are already in record-iteration order, so match each record with a single advancing cursor instead. (cherry picked from commit f1458b8)
Mirror the shared filter change in `copy_data_segment_reducer::filter`: the rebuild path matched each record against the kept-deltas vector with `std::count`, which is quadratic in the record count. The kept deltas are produced by a forward scan of the same batch, so match with a single advancing cursor instead, guarded by a `dassert` on the ordering invariant. (cherry picked from commit d9b0f9e)
WillemKauf
force-pushed
the
manual-backport-30740-v26.1.x-246
branch
from
June 10, 2026 20:50
02cce82 to
1b5856b
Compare
andrwng
approved these changes
Jun 11, 2026
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.
Manual backport of #30740.
cherry-pickconflict due to rearrangedmaintenancedirectory indev. Dropped benchmark file additions.Fixes #30759.
Backports Required
Release Notes
Improvements