Upgrade to latest arrow to include set serialization speedups (#957)

* update arrow to pull in the set serialization speedups

* remove _register_class for set
This commit is contained in:
Philipp Moritz
2017-09-10 00:12:17 -07:00
committed by Robert Nishihara
parent d6612a93a2
commit 546ba23ceb
2 changed files with 1 additions and 3 deletions
-2
View File
@@ -1028,8 +1028,6 @@ def _initialize_serialization(worker=global_worker):
_register_class(RayGetArgumentError)
# Tell Ray to serialize lambdas with pickle.
_register_class(type(lambda: 0), pickle=True)
# Tell Ray to serialize sets with pickle.
_register_class(type(set()), pickle=True)
# Tell Ray to serialize types with pickle.
_register_class(type(int), pickle=True)