[CELEBORN-2264] Support cancel shuffle when write bytes exceeds threshold#3601
Open
yew1eb wants to merge 7 commits intoapache:mainfrom
Open
[CELEBORN-2264] Support cancel shuffle when write bytes exceeds threshold#3601yew1eb wants to merge 7 commits intoapache:mainfrom
yew1eb wants to merge 7 commits intoapache:mainfrom
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3601 +/- ##
==========================================
- Coverage 67.13% 66.91% -0.22%
==========================================
Files 357 357
Lines 21860 21932 +72
Branches 1943 1949 +6
==========================================
Hits 14674 14674
- Misses 6166 6244 +78
+ Partials 1020 1014 -6 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
d15feca to
2182ddb
Compare
2182ddb to
9522ca4
Compare
9522ca4 to
65ee9d9
Compare
d7c7080 to
4a513c7
Compare
eolivelli
suggested changes
Feb 11, 2026
Contributor
eolivelli
left a comment
There was a problem hiding this comment.
I have left one question about protocol compatibility
Can you please add some unit tests ?
common/src/main/scala/org/apache/celeborn/common/protocol/message/ControlMessages.scala
Show resolved
Hide resolved
RexXiong
reviewed
Feb 14, 2026
Contributor
RexXiong
left a comment
There was a problem hiding this comment.
Thanks, BTW when the configuration is changed, you should also execute UPDATE=1 build/mvn clean test -pl common -am -Dtest=none -DwildcardSuites=org.apache.celeborn.ConfigurationSuite
common/src/main/scala/org/apache/celeborn/common/protocol/message/ControlMessages.scala
Show resolved
Hide resolved
RexXiong
reviewed
Feb 14, 2026
common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala
Outdated
Show resolved
Hide resolved
b925eb6 to
15b57bb
Compare
62fdfad to
9e32fcf
Compare
zaynt4606
reviewed
Feb 25, 2026
tests/spark-it/src/test/scala/org/apache/celeborn/tests/client/LifecycleManagerSuite.scala
Show resolved
Hide resolved
SteNicholas
reviewed
Feb 25, 2026
common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala
Outdated
Show resolved
Hide resolved
8115b03 to
4322dfb
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.
What changes were proposed in this pull request?
This patch adds configurable threshold check for shuffle write bytes.
Why are the changes needed?
Shuffle will be canceled automatically if write bytes exceed the threshold to avoid cluster resource exhaustion.
Does this PR resolve a correctness bug?
No.
Does this PR introduce any user-facing change?
No.
How was this patch tested?
CI and Manual testing.