ericm-db commented on code in PR #46125: URL: https://github.com/apache/spark/pull/46125#discussion_r1576656803
########## core/src/main/scala/org/apache/spark/api/python/StreamingPythonRunner.scala: ########## @@ -91,11 +91,27 @@ private[spark] class StreamingPythonRunner( new BufferedInputStream(pythonWorker.get.channel.socket().getInputStream, bufferSize)) val resFromPython = dataIn.readInt() + if (resFromPython != 0) { + val errMessage = PythonWorkerUtils.readUTF(dataIn) + throw streamingPythonRunnerDidNotInitialize(resFromPython, errMessage) + } logInfo(s"Runner initialization succeeded (returned $resFromPython).") (dataOut, dataIn) } + def streamingPythonRunnerDidNotInitialize(resFromPython: Int, errMessage: String): Review Comment: Done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org