turboFei commented on code in PR #3070:
URL: https://github.com/apache/celeborn/pull/3070#discussion_r1924922743
##########
client-spark/spark-3/src/main/scala/org/apache/spark/shuffle/celeborn/CelebornShuffleReader.scala:
##########
@@ -369,7 +375,22 @@ class CelebornShuffleReader[K, C](
}
}
- private def handleFetchExceptions(
+ @VisibleForTesting
+ def checkAndReportFetchFailureForUpdateFileGroupFailure(
+ celebornShuffleId: Int,
+ ce: Throwable): Unit = {
+ if (ce.getCause != null &&
+ (ce.getCause.isInstanceOf[InterruptedException] ||
ce.getCause.isInstanceOf[
+ TimeoutException])) {
Review Comment:
I think it should be fine to backport the whole patch to main branch.
--
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]