[CELEBORN-2314] Optimize the performance of DataBatches.requireBatches#3671
Open
afterincomparableyum wants to merge 1 commit intoapache:mainfrom
Open
[CELEBORN-2314] Optimize the performance of DataBatches.requireBatches#3671afterincomparableyum wants to merge 1 commit intoapache:mainfrom
afterincomparableyum wants to merge 1 commit intoapache:mainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Optimizes DataBatches.requireBatches(int) to avoid repeated ArrayList.remove(0) calls (which cause repeated element shifting) by selecting a prefix via subList(0, count) and clearing it in one operation.
Changes:
- Replace per-element
remove(0)loop with a prefix-size scan (get(count)) to find the split point. - Return the selected prefix batches and remove them from the internal list via
subList(0, count).clear(). - Update
totalSizein one subtraction using the accumulated byte size.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
requireBatches(int requestSize) currently calls batches.remove(0) per iteration, which shifts all remaining elements each time, overall O(kn). Replacing with a two pass approach (find split point, then subList(0, count).clear()) reduces this to O(n).
819bf8e to
b907983
Compare
Contributor
Author
|
Ping @SteNicholas @FMX for review |
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated no new comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Member
|
SteNicholas
approved these changes
May 4, 2026
Contributor
|
Overall LGTM, Could you add unit tests for requireBatches(int requestSize)? |
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.
What changes were proposed in this pull request?
requireBatches(int requestSize)currently callsbatches.remove(0)per iteration, which shifts all remaining elements each time, overall O(kn). Replacing with a two pass approach (find split point, then subList(0, count).clear()) reduces this to O(n).Why are the changes needed?
This is a minor performance optimization.
Does this PR resolve a correctness bug?
No.
Does this PR introduce any user-facing change?
No, this is just a performance improvement.
How was this patch tested?
CI Unit/Integration tests.