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.

已提问 1 年前513 查看次数
2 回答
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
专家
已回答 1 年前
专家
已审核 1 年前
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
专家
Uri
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则

相关内容