Will 2 threads ever access my AWS Lambda Java at the same time?

Does AWS support a thread pool and send concurrent incoming requests to the same Lambda instance, or is it deploying a different instance in these circumstances?

I know that at some load factor another instance will be launched, but can I rely on single-threaded access in Lambda?

+4
source share
1 answer

AWS Lambda functions are executed in a container (sandbox) that isolates them from other functions and provides resources, such as memory, specified in the function configuration.

, .

, , , . Lambda . , , Lambda .

. AWS Lambda

-1

Source: https://habr.com/ru/post/1679865/


All Articles