mridulm commented on code in PR #55347:
URL: https://github.com/apache/spark/pull/55347#discussion_r3337724812
##########
core/src/main/scala/org/apache/spark/shuffle/FetchFailedException.scala:
##########
@@ -69,4 +69,7 @@ private[spark] class MetadataFetchFailedException(
shuffleId: Int,
reduceId: Int,
message: String)
- extends FetchFailedException(null, shuffleId, -1L, -1, reduceId, message)
+ extends FetchFailedException(null, shuffleId, -1L, -1, reduceId, message) {
+ override def toTaskFailedReason: TaskFailedReason = MetadataFetchFailed(
+ shuffleId, reduceId, Utils.exceptionString(this))
+}
Review Comment:
[See
here](https://github.com/apache/spark/blob/224231815105f6c0f333e866ef50c48810720f37/core/src/main/scala/org/apache/spark/shuffle/FetchFailedException.scala#L59)
- we will still end up propagating fetch failure.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]