Revert "[Streaming] Fault Tolerance Implementation (#10008)" (#10582)

This reverts commit 1b1466748f.
This commit is contained in:
SangBin Cho
2020-09-04 13:21:18 -07:00
committed by GitHub
parent da83bbd764
commit cb919c5e5c
158 changed files with 1226 additions and 7039 deletions
+2 -3
View File
@@ -68,7 +68,7 @@ class OutputCollector(Collector):
python_buffer = self.python_serializer.serialize(record)
self._writer.write(
self._channel_ids[partition_index],
bytes([serialization.PYTHON_TYPE_ID]) + python_buffer)
serialization._PYTHON_TYPE_ID + python_buffer)
else:
# avoid repeated serialization
if cross_lang_buffer is None:
@@ -76,5 +76,4 @@ class OutputCollector(Collector):
record)
self._writer.write(
self._channel_ids[partition_index],
bytes([serialization.CROSS_LANG_TYPE_ID]) +
cross_lang_buffer)
serialization._CROSS_LANG_TYPE_ID + cross_lang_buffer)