Github user holdenk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/20373#discussion_r163436769
  
    --- Diff: python/pyspark/cloudpickle.py ---
    @@ -237,28 +262,14 @@ def dump(self, obj):
                 if 'recursion' in e.args[0]:
                     msg = """Could not pickle object as excessively deep 
recursion required."""
                     raise pickle.PicklingError(msg)
    -        except pickle.PickleError:
    -            raise
    -        except Exception as e:
    -            emsg = _exception_message(e)
    -            if "'i' format requires" in emsg:
    -                msg = "Object too large to serialize: %s" % emsg
    -            else:
    -                msg = "Could not serialize object: %s: %s" % 
(e.__class__.__name__, emsg)
    -            print_exec(sys.stderr)
    -            raise pickle.PicklingError(msg)
    -
    --- End diff --
    
    I'm glad this is moved, should make the next update easier.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to