You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the zstandard module to compress and decompress data in a multiprocessing context. If there is a zstd.ZstdError thrown when running in a pool such as:
zstd.ZstdError: decompression error: did not decompress full frame
It results in this error:
multiprocessing.pool.MaybeEncodingError: Error sending result: '<multiprocessing.pool.ExceptionWithTraceback object at 0x74ccabe98bb0>'. Reason: 'PicklingError("Can't pickle <class 'zstd.ZstdError'>: import of module 'zstd' failed")'
Seems that there is something in the zstd.ZstdError class that can't be pickled by the multiprossing.pool.
The text was updated successfully, but these errors were encountered:
Using the zstandard module to compress and decompress data in a multiprocessing context. If there is a zstd.ZstdError thrown when running in a pool such as:
It results in this error:
Seems that there is something in the
zstd.ZstdError
class that can't be pickled by themultiprossing.pool
.The text was updated successfully, but these errors were encountered: