2 Answers
- Newest
- Most votes
- Most comments
1
Hello, Lambda does not have shared memory device. You can have a look on these:
https://github.com/ansible/ansible/issues/18469
https://pypi.org/project/lambda-multiprocessing/
Thanks.
0
When deploying applications on AWS Lambda, one of the common limitations is the absence of shared memory for concurrent processes. If you need to implement parallel processing in your Lambda functions, you might face challenges due to this constraint. The lambda-multiprocessing library can help address this issue by providing a way to leverage Python's multiprocessing module in the Lambda environment.
You can refer to the url that @Zen shared
Relevant content
- asked 3 years ago
- asked 2 years ago
- asked 3 years ago
