I'm using
dask.compute(*delayeds, scheduler='processes', num_workers=4)
to run computations in parallel.
However I hit a problem to retrieve computation result since the object size returned is more than 4GB. The pickle protocol by default in multiprocessing is 3 and 4GB is its limit.
I'd like to know if it's possible to change the protocol to 4.
I have found some hint in How to change the serialization method used by the multiprocessing module? but it does not seems to work on windows.
Thanks