Github user davies commented on a diff in the pull request:
https://github.com/apache/spark/pull/6262#discussion_r32776469
--- Diff: python/pyspark/rdd.py ---
@@ -704,7 +704,12 @@ def pipe_objs(out):
out.write(s.encode('utf-8'))
out.close()
Thread(target=pipe_objs, args=[pipe.stdin]).start()
- return (x.rstrip(b'\n').decode('utf-8') for x in
iter(pipe.stdout.readline, b''))
+ result = (x.rstrip(b'\n').decode('utf-8') for x in
iter(pipe.stdout.readline, b''))
+ pipe.wait()
--- End diff --
While waiting, the stdout of subprocess is not consumed, it may block the
subprocess, causing dead lock.
---
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 [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]