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
anyone else doing anything that pickles FugueWorkflowResult ? I'm executing some sql flows over secondary python processes, and running into an error like
i assume this is because FugueWorkflowResult doesn't have provide a no-arg constructor? (not sure actually, not familiar w/ pickle but this smells like a deserialization kind of issue w/ a class not being able to be rematerialized)
I'm getting around this by capturing the result and just extracting the yields and returning that instead prior to being pickled and sent back to the parent process.
The text was updated successfully, but these errors were encountered:
interestingly enough this error went away when I switched to a different multiprocessing framework that sits above python's. I started using pebble. In any case, this use-case is most definitely one I am pursuing and is currently working for me. i.e. a primary process forking off child processes where the actual fugue sql flows get executed.
anyone else doing anything that pickles FugueWorkflowResult ? I'm executing some sql flows over secondary python processes, and running into an error like
i assume this is because FugueWorkflowResult doesn't have provide a no-arg constructor? (not sure actually, not familiar w/ pickle but this smells like a deserialization kind of issue w/ a class not being able to be rematerialized)
I'm getting around this by capturing the result and just extracting the
yields
and returning that instead prior to being pickled and sent back to the parent process.The text was updated successfully, but these errors were encountered: