Ngone51 commented on a change in pull request #33477:
URL: https://github.com/apache/spark/pull/33477#discussion_r674567533
##########
File path: core/src/main/scala/org/apache/spark/shuffle/ShuffleBlockPusher.scala
##########
@@ -100,7 +106,15 @@ private[spark] class ShuffleBlockPusher(conf: SparkConf)
extends Logging {
pushRequests ++= Utils.randomize(requests)
submitTask(() => {
- pushUpToMax()
+ try {
+ pushUpToMax()
+ } catch {
+ case e: FileNotFoundException =>
+ logWarning("The shuffle files got deleted when this task was reading
from them " +
Review comment:
`this task` -> `this shuffle-block-push-thread`?
--
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]