How to configure lambda reserved concurrency
How to Configure reserved concurrency
To manage reserved concurrency settings for a function, use the Lambda console.
To reserve concurrency for a function
Open the Functions page
of the Lambda console. Choose a function.
Choose Configuration and then choose Concurrency.
Under Concurrency, choose Edit.
Choose Reserve concurrency. Enter the amount of concurrency to reserve for the function.
Choose Save.
To configure reserved concurrency with the AWS CLI, use the put-function-concurrency
command. The following command reserves a concurrency of 100 for a function named my-function
:
aws lambda put-function-concurrency --function-name my-function --reserved-concurrent-executions 100
You should see the following output:
{
"ReservedConcurrentExecutions": 100
}
No comments