-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't be used in AWS Lambda #51
Comments
Good point. Do you want to make a PR for that? |
Sure. How about adding another argument other than |
can You provide a code snippet to test please |
ok, I changed the implementation to use multiprocess.pipe (halfduplex). It is faster, more elegant and probably can work with AWS (let me know). |
When setting
use_signal
toFalse
, it usesmultiprocessing.Queue
which isn't support in AWS Lambda.Are we gonna have other approach to not use signal? Maybe use
multiprocessing.Pipe
? ThanksAWS Document: https://aws.amazon.com/blogs/compute/parallel-processing-in-python-with-aws-lambda/
The text was updated successfully, but these errors were encountered: