Skip to content

Commit

Permalink
[CELEBORN-656] Should also refine log about return HARD_SPLIT in hand…
Browse files Browse the repository at this point in the history
…lePushMergedData

### What changes were proposed in this pull request?
As title

### Why are the changes needed?

### Does this PR introduce _any_ user-facing change?

### How was this patch tested?

Closes #1756 from AngersZhuuuu/CELEBORN-656-FOLLOWUP.

Authored-by: Angerszhuuuu <[email protected]>
Signed-off-by: zky.zhoukeyong <[email protected]>
  • Loading branch information
AngersZhuuuu authored and waitinfuture committed Jul 24, 2023
1 parent 67c18e6 commit 6427ed3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ class PushDataHandler extends BaseMessageHandler with Logging {
callbackWithTimer.onSuccess(
ByteBuffer.wrap(Array[Byte](StatusCode.STAGE_ENDED.getValue)))
} else {
logInfo(s"Receive push merged data for committed hard split partition of " +
logInfo(s"[Case1] Receive push merged data for committed hard split partition of " +
s"(shuffle $shuffleKey, map $mapId attempt $attemptId)")
callbackWithTimer.onSuccess(
ByteBuffer.wrap(Array[Byte](StatusCode.HARD_SPLIT.getValue)))
Expand All @@ -458,7 +458,7 @@ class PushDataHandler extends BaseMessageHandler with Logging {
// If there is no shuffle key in shuffleMapperAttempts but there is shuffle key
// in StorageManager. This partition should be HARD_SPLIT partition and
// after worker restart, some tasks still push data to this HARD_SPLIT partition.
logInfo(s"Receive push merged data for committed hard split partition of " +
logInfo(s"[Case2] Receive push merged data for committed hard split partition of " +
s"(shuffle $shuffleKey, map $mapId attempt $attemptId)")
callbackWithTimer.onSuccess(
ByteBuffer.wrap(Array[Byte](StatusCode.HARD_SPLIT.getValue)))
Expand Down

0 comments on commit 6427ed3

Please sign in to comment.