Repository: spark
Updated Branches:
  refs/heads/branch-1.3 52994d83b -> c2a9a6176


[SPARK-5788] [PySpark] capture the exception in python write thread

The exception in Python writer thread will shutdown executor.

Author: Davies Liu <dav...@databricks.com>

Closes #4577 from davies/exception and squashes the following commits:

eb0ceff [Davies Liu] Update PythonRDD.scala
139b0db [Davies Liu] capture the exception in python write thread

(cherry picked from commit b1bd1dd3228ef50fa7310d466afd834b8cb1f22e)
Signed-off-by: Josh Rosen <joshro...@databricks.com>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/c2a9a617
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/c2a9a617
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/c2a9a617

Branch: refs/heads/branch-1.3
Commit: c2a9a61764fcbef07a8d42e5f68a46692bd12d75
Parents: 52994d8
Author: Davies Liu <dav...@databricks.com>
Authored: Mon Feb 16 17:57:14 2015 -0800
Committer: Josh Rosen <joshro...@databricks.com>
Committed: Mon Feb 16 17:57:27 2015 -0800

----------------------------------------------------------------------
 core/src/main/scala/org/apache/spark/api/python/PythonRDD.scala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/c2a9a617/core/src/main/scala/org/apache/spark/api/python/PythonRDD.scala
----------------------------------------------------------------------
diff --git a/core/src/main/scala/org/apache/spark/api/python/PythonRDD.scala 
b/core/src/main/scala/org/apache/spark/api/python/PythonRDD.scala
index b89effc..2527211 100644
--- a/core/src/main/scala/org/apache/spark/api/python/PythonRDD.scala
+++ b/core/src/main/scala/org/apache/spark/api/python/PythonRDD.scala
@@ -248,13 +248,13 @@ private[spark] class PythonRDD(
       } catch {
         case e: Exception if context.isCompleted || context.isInterrupted =>
           logDebug("Exception thrown after task completion (likely due to 
cleanup)", e)
-          worker.shutdownOutput()
+          Utils.tryLog(worker.shutdownOutput())
 
         case e: Exception =>
           // We must avoid throwing exceptions here, because the thread 
uncaught exception handler
           // will kill the whole executor (see 
org.apache.spark.executor.Executor).
           _exception = e
-          worker.shutdownOutput()
+          Utils.tryLog(worker.shutdownOutput())
       } finally {
         // Release memory used by this thread for shuffles
         env.shuffleMemoryManager.releaseMemoryForThisThread()


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to