aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/streaming/util.py
diff options
context:
space:
mode:
authorShixiong Zhu <shixiong@databricks.com>2016-01-05 13:48:47 -0800
committerDavies Liu <davies.liu@gmail.com>2016-01-05 13:48:47 -0800
commit6cfe341ee89baa952929e91d33b9ecbca73a3ea0 (patch)
treec578445bdd6b5610875b189d6e4a8e7cc2efc20f /python/pyspark/streaming/util.py
parentc26d174265f6b4682210fcc406e6603b4f7dc784 (diff)
downloadspark-6cfe341ee89baa952929e91d33b9ecbca73a3ea0.tar.gz
spark-6cfe341ee89baa952929e91d33b9ecbca73a3ea0.tar.bz2
spark-6cfe341ee89baa952929e91d33b9ecbca73a3ea0.zip
[SPARK-12511] [PYSPARK] [STREAMING] Make sure PythonDStream.registerSerializer is called only once
There is an issue that Py4J's PythonProxyHandler.finalize blocks forever. (https://github.com/bartdag/py4j/pull/184) Py4j will create a PythonProxyHandler in Java for "transformer_serializer" when calling "registerSerializer". If we call "registerSerializer" twice, the second PythonProxyHandler will override the first one, then the first one will be GCed and trigger "PythonProxyHandler.finalize". To avoid that, we should not call"registerSerializer" more than once, so that "PythonProxyHandler" in Java side won't be GCed. Author: Shixiong Zhu <shixiong@databricks.com> Closes #10514 from zsxwing/SPARK-12511.
Diffstat (limited to 'python/pyspark/streaming/util.py')
-rw-r--r--python/pyspark/streaming/util.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/pyspark/streaming/util.py b/python/pyspark/streaming/util.py
index abbbf6eb93..e617fc9ce9 100644
--- a/python/pyspark/streaming/util.py
+++ b/python/pyspark/streaming/util.py
@@ -89,11 +89,10 @@ class TransformFunctionSerializer(object):
it uses this class to invoke Python, which returns the serialized function
as a byte array.
"""
- def __init__(self, ctx, serializer, gateway=None):
+ def init(self, ctx, serializer, gateway=None):
self.ctx = ctx
self.serializer = serializer
self.gateway = gateway or self.ctx._gateway
- self.gateway.jvm.PythonDStream.registerSerializer(self)
self.failure = None
def dumps(self, id):