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
This breaks on the below code -- it's hamilton within hamilton.
Stack Traces
Pickle error on Module Type.
Steps to replicate behavior
The mapper-worker-reducer pattern works well on multithreadingexecutor, but not work for multiprocessingexecutor. The error is cannot pickle 'module' object. Here is a minimal reproduce environment:
This fixes#1093.
Modules were not picklable. So this fixes that by serializing
their fully qualified names, and then when the driver object
is deserialized, they are reinstantiated as module objects.
Current behavior
This breaks on the below code -- it's hamilton within hamilton.
Stack Traces
Pickle error on Module Type.
Steps to replicate behavior
The mapper-worker-reducer pattern works well on multithreadingexecutor, but not work for multiprocessingexecutor. The error is cannot pickle 'module' object. Here is a minimal reproduce environment:
Library & System Information
Latest.
Expected behavior
This work.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: