- Newest
- Most votes
- Most comments
It could be any number of things, but it sounds like your function might simply be running out of memory. That also wouldn't exclusively be related to the input it's given or require anything to have changed significantly at/by AWS for the amount of memory available for a runtime environment to vary enough to trigger that situation.
You could try doubling the memory for your function and testing if it makes a difference. Support might also suggest trying that.
We are currently at max 10GB allowed by lambda, plus from the report log it does not seems to be problem with memory:
REPORT RequestId: 268d45e4-30d7-4bc1-b14d-bf9ccd57b0cd Duration: 62508.76 ms Billed Duration: 62509 ms Memory Size: 10240 MB Max Memory Used: 4897 MB
I would recommend that you open a support case for that level of troubleshooting. No one on the re:Post forum can access backend information regarding changes to the service.
This can happen if there are binary packages included in your Lambda deployment which were not created on a platform that is the same as the underlying OS that Lambda uses. Make sure that your packages (especially those with binary dependencies) are created on Amazon Linux.
Relevant content
- asked 2 years ago
- asked 3 years ago
- AWS OFFICIALUpdated 3 months ago
- AWS OFFICIALUpdated 3 years ago

we have the same exact issue with very similar lambda dependencies and usage (machine learning inference code, a Dockerized Python application utilizing various ML libraries (numpy, scipy, etc.), runs on AWS Lambda.) and it started to fail also 2 on 2024-05-31...