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
I'm using a function defined in the current file in pseq, and seems it errors out not being able to find other referenced functions or even simple types like Dict. This works fine when using seq.
I think the problem is with pickling the target function in lazy_parallelize:
partitions = split_every(partition_size, iter(result))
packed_partitions = (pack(func, (partition,)) for partition in partitions)
for pool_result in pool.imap(unpack, packed_partitions):
yield pool_result
pool.terminate()
I executed on my own the function with pool.imap and works fine.
Wouldn't it be better not to use pickling to avoid these kind of problems?
The text was updated successfully, but these errors were encountered:
Thanks for the issue report. The reason for dill/cloudpickle is that there are quite a few types that python can't pickle but that those can. I think the solution here is probably making it easy to specify which pickler (including a no-op "pickler"). I'd be open to a PR that implements this and leaves the current defaults.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I will work on a PR to specify the pickler. Can you expand on how a no-op pickler option would work? I quickly hacked together import pickle as serializer. What kind of tests would you suggest to make sure that other picklers work well?
I'm using a function defined in the current file in pseq, and seems it errors out not being able to find other referenced functions or even simple types like Dict. This works fine when using seq.
I think the problem is with pickling the target function in lazy_parallelize:
I executed on my own the function with pool.imap and works fine.
Wouldn't it be better not to use pickling to avoid these kind of problems?
The text was updated successfully, but these errors were encountered: