1

I created an AWS Lambda function. But I am confused about memory size. The memory size of the function is 512 MB. When 10 request comes at the same time, which scenario will be happen:

Scenario A : each function runs with 512/10 = 51,2 MB memory

Scenario B : each function runs with 512 MB memory

1 Answer 1

4

Each execution of the function gets full access to the memory size you set when you created the function.

If there are multiple, simultaneous executions, each gets access to its own 512MB

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.