-
- Downloads
[SPARK-3469] Make sure all TaskCompletionListener are called even with failures
This is necessary because we rely on this callback interface to clean resources up. The old behavior would lead to resource leaks. Note that this also changes the fault semantics of TaskCompletionListener. Previously failures in TaskCompletionListeners would result in the task being reported immediately. With this change, we report the exception at the end, and the reported exception is a TaskCompletionListenerException that contains all the exception messages. Author: Reynold Xin <rxin@apache.org> Closes #2343 from rxin/taskcontext-callback and squashes the following commits: a3845b2 [Reynold Xin] Mark TaskCompletionListenerException as private[spark]. ac5baea [Reynold Xin] Removed obsolete comment. aa68ea4 [Reynold Xin] Throw an exception if task completion callback fails. 29b6162 [Reynold Xin] oops compilation failed. 1cb444d [Reynold Xin] [SPARK-3469] Call all TaskCompletionListeners even if some fail.
Showing
- core/src/main/scala/org/apache/spark/TaskContext.scala 15 additions, 3 deletionscore/src/main/scala/org/apache/spark/TaskContext.scala
- core/src/main/scala/org/apache/spark/util/TaskCompletionListenerException.scala 34 additions, 0 deletions...g/apache/spark/util/TaskCompletionListenerException.scala
- core/src/test/scala/org/apache/spark/scheduler/TaskContextSuite.scala 20 additions, 2 deletions...t/scala/org/apache/spark/scheduler/TaskContextSuite.scala
Please register or sign in to comment