We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56e009d commit 361e962Copy full SHA for 361e962
core/src/main/scala/org/apache/spark/scheduler/DAGScheduler.scala
@@ -768,6 +768,10 @@ class DAGScheduler(
768
abortStage(stage, "Task not serializable: " + e.toString)
769
runningStages -= stage
770
return
771
+ case e: Throwable => // Other exceptions, such as IllegalArgumentException from Kryo.
772
+ abortStage(stage, "Task serialization failed: " + e.toString)
773
+ runningStages -= stage
774
+ return
775
}
776
777
logInfo("Submitting " + tasks.size + " missing tasks from " + stage + " (" + stage.rdd + ")")
0 commit comments