Skip to content

Commit

Permalink
log enhance
Browse files Browse the repository at this point in the history
  • Loading branch information
zuston committed Jun 19, 2024
1 parent 5b26a32 commit d63d3ce
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,18 @@ public void reportShuffleFetchFailure(
String.format(
"Activate stage retry on stage(%d:%d), taskFailuresCount:(%d)",
stageId, stageAttempt, rssShuffleStatus.getTaskFailureAttemptCount());
if (shuffleManager.reassignOnStageResubmit(stageId, stageAttempt, shuffleId, -1)) {
int partitionNum = shuffleManager.getPartitionNum(shuffleId);
if (shuffleManager.reassignOnStageResubmit(
stageId, stageAttempt, shuffleId, partitionNum)) {
LOG.info(
"{} from executorId({}), task({}:{})",
"{} from executorId({}), task({}:{}) on stageId({}:{}), shuffleId({})",
msg,
executorId,
taskAttemptId,
taskAttemptNumber);
taskAttemptNumber,
stageId,
stageAttempt,
shuffleId);
}
} else {
reSubmitWholeStage = false;
Expand Down

0 comments on commit d63d3ce

Please sign in to comment.