Skip to content

Pricing on lambda

0

What is the estimated cost impact of increasing lambda function concurrency limit?

asked 3 years ago908 views
3 Answers
1

The cost depends on the memory assigned and the execution time.

AWS Calculator can help with your cost estimations. https://calculator.aws/#/addService/Lambda

answered 3 years ago
1

Increasing the account's concurrency limit as no direct impact on pricing. With Lambda you only pay for what you use. If we increase the limit and you do not use it, there is no increase in cost.

Saying that, when you increase the limit, you risk having some bad situations when a function goes wild and consumes all the available concurrency, which then might have a cost impact.

AWS
EXPERT
answered 3 years ago
EXPERT
reviewed 2 years ago
0
Accepted Answer

The lambda pricing page https://aws.amazon.com/lambda/pricing/ has details on pricing for Provisioned Concurrency, under the "Provisioned Concurrency Pricing" section, should you choose to use Provisioned Concurrency. Other than that, the lambda pricing depends on memory assigned and execution time, as Carlos has mentioned above.

AWS
EXPERT
answered 3 years ago
EXPERT
reviewed 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.