AWS Parameters and Secrets Lambda Extension lifetime

1

I came to know that AWS Parameters and Secrets Lambda Extension has been launched recently to improve the application performance as it decreases the latency and the cost of retrieving parameters and secrets. Source:- https://aws.amazon.com/about-aws/whats-new/2022/10/aws-parameters-secrets-lambda-extension/

The above link also states that "This lightweight and easy-to-use extension caches parameters and secrets, and persists them throughout the lifecycle of the Lambda function".

So does it mean that this extension creates 1 instance per 1 lambda instance. For e.g. say I have a lambda that has an input as customerid. Gets me the customer phone number from the back-end API which is authenticated via credentials stored in secret manager.

if I receive 5 simultaneous requests to this lambda I would have 5 instances of lambda. Would I have 5 instances of the extensions or 1? And if no requests are received for the next 1 hour I believe all lambda instances and extension instances are de-allocated?

if yes, what is the benefit of using this extension over storing the secrets in a global variable in the lambda? (read the secret onto the variable for the first time from the secret manager)

Thanks Hari

已提问 1 年前279 查看次数
1 回答
0

The extension runs in your execution environment, so if you're running 5 functions in parallel then you have 5 execution environments so 5 independent instances of the extension.

Yes you could store a retreived secret in a global var rather than using the extension's caching - there's not much difference really. But there's still an advantage to using the extension for that initial retrieval if it means you reduce SDK initialisation cost.

专家
已回答 1 年前
profile picture
专家
已审核 1 个月前

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

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

回答问题的准则