RexXiong commented on code in PR #3517:
URL: https://github.com/apache/celeborn/pull/3517#discussion_r2489029546
##########
client/src/main/java/org/apache/celeborn/client/read/CelebornInputStream.java:
##########
@@ -467,7 +467,9 @@ private PartitionReader createReaderWithRetry(
lastException = e;
shuffleClient.excludeFailedFetchLocation(location.hostAndFetchPort(), e);
fetchChunkRetryCnt++;
- if (location.hasPeer() && !readSkewPartitionWithoutMapRange) {
+ if (location.hasPeer()
+ && !isExcluded(location.getPeer())
Review Comment:
It appears that `isExcluded(location.getPeer())` now serves the same purpose
as `isExcluded(location)` at line 455.
--
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]