-
Notifications
You must be signed in to change notification settings - Fork 360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CELEBORN-1685] ShuffleFallbackPolicy supports ShuffleFallbackCount metric #2891
Closed
Conversation
This file contains 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
SteNicholas
force-pushed
the
CELEBORN-1685
branch
2 times, most recently
from
November 7, 2024 10:45
94b747b
to
91ba974
Compare
FMX
reviewed
Nov 7, 2024
turboFei
reviewed
Nov 7, 2024
client/src/main/scala/org/apache/celeborn/client/LifecycleManager.scala
Outdated
Show resolved
Hide resolved
RexXiong
reviewed
Nov 8, 2024
...3/src/main/scala/org/apache/spark/shuffle/celeborn/CelebornShuffleFallbackPolicyRunner.scala
Show resolved
Hide resolved
...src/main/java/org/apache/celeborn/service/deploy/master/clustermeta/AbstractMetaManager.java
Outdated
Show resolved
Hide resolved
SteNicholas
force-pushed
the
CELEBORN-1685
branch
from
November 8, 2024 06:11
91ba974
to
041685c
Compare
SteNicholas
force-pushed
the
CELEBORN-1685
branch
3 times, most recently
from
November 8, 2024 06:25
3019a5d
to
b1c3257
Compare
turboFei
reviewed
Nov 8, 2024
common/src/main/scala/org/apache/celeborn/common/protocol/message/ControlMessages.scala
Outdated
Show resolved
Hide resolved
SteNicholas
force-pushed
the
CELEBORN-1685
branch
from
November 8, 2024 06:50
b1c3257
to
cfda3f1
Compare
turboFei
reviewed
Nov 8, 2024
client/src/main/scala/org/apache/celeborn/client/ApplicationHeartbeater.scala
Outdated
Show resolved
Hide resolved
client/src/main/scala/org/apache/celeborn/client/LifecycleManager.scala
Outdated
Show resolved
Hide resolved
master/src/main/scala/org/apache/celeborn/service/deploy/master/Master.scala
Outdated
Show resolved
Hide resolved
master/src/main/scala/org/apache/celeborn/service/deploy/master/MasterSource.scala
Outdated
Show resolved
Hide resolved
SteNicholas
force-pushed
the
CELEBORN-1685
branch
2 times, most recently
from
November 8, 2024 07:56
35d9c97
to
2a50d74
Compare
RexXiong
reviewed
Nov 8, 2024
client/src/main/scala/org/apache/celeborn/client/LifecycleManager.scala
Outdated
Show resolved
Hide resolved
SteNicholas
force-pushed
the
CELEBORN-1685
branch
from
November 8, 2024 23:37
2a50d74
to
b5fc245
Compare
turboFei
reviewed
Nov 8, 2024
client/src/main/scala/org/apache/celeborn/client/LifecycleManager.scala
Outdated
Show resolved
Hide resolved
turboFei
reviewed
Nov 9, 2024
common/src/main/scala/org/apache/celeborn/common/protocol/message/ControlMessages.scala
Outdated
Show resolved
Hide resolved
turboFei
reviewed
Nov 9, 2024
master/src/main/scala/org/apache/celeborn/service/deploy/master/Master.scala
Outdated
Show resolved
Hide resolved
SteNicholas
force-pushed
the
CELEBORN-1685
branch
from
November 9, 2024 05:39
b5fc245
to
eb73c15
Compare
turboFei
approved these changes
Nov 9, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks
RexXiong
approved these changes
Nov 11, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, merge to main(v0.6.0)
RexXiong
pushed a commit
that referenced
this pull request
Nov 12, 2024
…compute shuffleFallbackCounts via class name of ShuffleFallbackPolicy implementation ### What changes were proposed in this pull request? `CelebornShuffleFallbackPolicyRunner` should compute `shuffleFallbackCounts` via class name of `ShuffleFallbackPolicy` implementation. Follow up #2891. ### Why are the changes needed? `CelebornShuffleFallbackPolicyRunner` computes `shuffleFallbackCounts` via class name of `Option` instead of class name of `ShuffleFallbackPolicy` implementation at present. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? CI. Closes #2909 from SteNicholas/CELEBORN-1685. Authored-by: SteNicholas <[email protected]> Signed-off-by: Shuang <[email protected]>
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?
ShuffleFallbackPolicy
supportsShuffleFallbackCount
metric to provide the shuffle fallback count of each fallback policy.ShuffleTotalCount
metric to record the total count of shuffle.LifecycleManager
.Why are the changes needed?
The implementations of
ShuffleFallbackPolicy
does not supportShuffleFallbackCount
metric at present. Meanwhile, Bilibili production practice needsShuffleFallbackCount
of differentShuffleFallbackPolicy
.Does this PR introduce any user-facing change?
No.
How was this patch tested?
Cluster test.