Github user aarondav commented on a diff in the pull request:

    https://github.com/apache/spark/pull/640#discussion_r12266441
  
    --- Diff: core/src/main/scala/org/apache/spark/api/python/PythonRDD.scala 
---
    @@ -224,10 +150,70 @@ private[spark] class PythonRDD[T: ClassTag](
     
           def hasNext = _nextObj.length != 0
         }
    -    stdoutIterator
    +    new InterruptibleIterator(context, stdoutIterator)
       }
     
       val asJavaRDD : JavaRDD[Array[Byte]] = JavaRDD.fromRDD(this)
    +
    +  /**
    +   * The thread responsible for writing the data from the PythonRDD's 
parent iterator to the
    +   * Python process.
    +   */
    +  class WriterThread(env: SparkEnv, worker: Socket, split: Partition, 
context: TaskContext)
    +    extends Thread(s"stdout writer for $pythonExec") {
    +
    +    @volatile private var _exception: Exception = null
    +
    +    /** Contains the exception thrown while writing the parent iterator to 
the Python process. */
    +    def exception: Option[Exception] = Option(_exception)
    +
    +    /** Terminates the writer thread, ignoring any exceptions that may 
occur due to cleanup. */
    +    def shutdownOnTaskCompletion() {
    +      assert(context.completed)
    +      this.interrupt()
    +    }
    +
    +    override def run() {
    --- End diff --
    
    The only change I made to this method (other than moving it) was in the 
exception handler, where I removed the catch for IOException and 
FileNotFoundException and added a check for context.completed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to