aws lambda function not able to create a new instance each time it is invoked and resuses old instances

0

Hi, I want my java aws lambda function to create a new instance each time it is invoked with a fresh environment.

But as of now it is reusing an existing aws lambda instance which is already created.

I tried setting AWS_LAMBDA_INITIALIZATION_TYPE environment variable to "on-demand" but it doesn't work.

How to achieve the desired outcome.

preguntada hace un año513 visualizaciones
2 Respuestas
0

Hello,

According to AWS documentation, it's not possible to create a new instance with a fresh environment each time, since after the function and all extensions have completed, Lambda freezes the execution environment for some time in anticipation of another function invocation.

It doesn't always happen, so do not assume that Lambda automatically reuses the execution environment for all subsequent function invocations, but it is the default/expected behaviour.

profile picture
EXPERTO
respondido hace un año
EXPERTO
revisado hace un año
0

Lambda was designed to reuse the execution environment between invocations to save on cold starts. Why do you need to create a new one for each invocation?

profile pictureAWS
EXPERTO
Uri
respondido hace un año

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas