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

    https://github.com/apache/spark/pull/640#discussion_r12266419
  
    --- Diff: core/src/main/scala/org/apache/spark/api/python/PythonRDD.scala 
---
    @@ -56,122 +56,46 @@ private[spark] class PythonRDD[T: ClassTag](
         val env = SparkEnv.get
         val worker: Socket = env.createPythonWorker(pythonExec, envVars.toMap)
     
    -    // Ensure worker socket is closed on task completion. Closing sockets 
is idempotent.
    -    context.addOnCompleteCallback(() =>
    +    // Start a thread to feed the process input from our parent's iterator
    +    val writerThread = new WriterThread(env, worker, split, context)
    +
    +    context.addOnCompleteCallback { () =>
    +      writerThread.shutdownOnTaskCompletion()
    +
    +      // Cleanup the worker socket. This will also cause the Python worker 
to exit.
           try {
             worker.close()
           } catch {
             case e: Exception => logWarning("Failed to close worker socket", e)
           }
    -    )
    -
    -    @volatile var readerException: Exception = null
     
    -    // Start a thread to feed the process input from our parent's iterator
    -    new Thread("stdin writer for " + pythonExec) {
    -      override def run() {
    +      // The python worker must be destroyed in the event of cancellation 
to ensure it unblocks.
    +      if (context.interrupted) {
             try {
    -          SparkEnv.set(env)
    -          val stream = new BufferedOutputStream(worker.getOutputStream, 
bufferSize)
    -          val dataOut = new DataOutputStream(stream)
    -          // Partition index
    -          dataOut.writeInt(split.index)
    -          // sparkFilesDir
    -          PythonRDD.writeUTF(SparkFiles.getRootDirectory, dataOut)
    -          // Broadcast variables
    -          dataOut.writeInt(broadcastVars.length)
    -          for (broadcast <- broadcastVars) {
    -            dataOut.writeLong(broadcast.id)
    -            dataOut.writeInt(broadcast.value.length)
    -            dataOut.write(broadcast.value)
    -          }
    -          // Python includes (*.zip and *.egg files)
    -          dataOut.writeInt(pythonIncludes.length)
    -          for (include <- pythonIncludes) {
    -            PythonRDD.writeUTF(include, dataOut)
    -          }
    -          dataOut.flush()
    -          // Serialized command:
    -          dataOut.writeInt(command.length)
    -          dataOut.write(command)
    -          // Data values
    -          PythonRDD.writeIteratorToStream(parent.iterator(split, context), 
dataOut)
    -          dataOut.flush()
    -          worker.shutdownOutput()
    +          logWarning("Incomplete task interrupted: Attempting to kill 
Python Worker")
    +          env.destroyPythonWorker(pythonExec, envVars.toMap)
    --- End diff --
    
    @ahirreddy This logic replaces the monitor thread. Please take a look.


---
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