cxzl25 commented on code in PR #3805:
URL: https://github.com/apache/celeborn/pull/3805#discussion_r3796284503
##########
client/src/main/java/org/apache/celeborn/client/ShuffleClientImpl.java:
##########
@@ -2048,6 +2048,19 @@ public CelebornInputStream readPartition(
logger.warn("Shuffle data is empty for shuffle {} partition {}.",
shuffleId, partitionId);
return CelebornInputStream.empty();
} else {
+ if (logger.isInfoEnabled()) {
+ Set<String> workerHosts = new LinkedHashSet<>();
+ for (PartitionLocation location : locations) {
+ if (location != null) {
+ workerHosts.add(location.getHost());
+ }
+ }
+ logger.info(
+ "Reduce task for shuffle {} partition {} reads data from worker
hosts: {}",
Review Comment:
Is it somewhat similar to CELEBORN-2208 ?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]