cloud-fan commented on code in PR #50230: URL: https://github.com/apache/spark/pull/50230#discussion_r2320782342
########## core/src/main/scala/org/apache/spark/MapOutputTracker.scala: ########## @@ -169,6 +174,15 @@ private class ShuffleStatus( } else { mapIdToMapIndex.remove(currentMapStatus.mapId) } + logDebug(s"Checksum of map output for task ${status.mapId} is ${status.checksumValue}") + + val preStatus = + if (mapStatuses(mapIndex) != null) mapStatuses(mapIndex) else mapStatusesDeleted(mapIndex) + if (preStatus != null && preStatus.checksumValue != status.checksumValue) { + logInfo(s"Checksum of map output changes from ${preStatus.checksumValue} to " + + s"${status.checksumValue} for task ${status.mapId}.") Review Comment: oh it's from `TaskContext.taskAttemptId`, so it's task id. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org