Skip to content

Stack Creation Error

0

Hello, I am setting up a new Stack as a part of Cisco Umbrella integration with SecureWorks. I received this error message when I attempt to create the stack, "Resource handler returned message: "Specified ReservedConcurrentExecutions for function decreases account's UnreservedConcurrentExecution below its minimum value of [10]. (Service: Lambda, Status Code: 400, Request ID: 4a11fa15-3e9b-4ef0-8209-f1835789666e)" (RequestToken: fbb13b8b-7b56-0510-a34e-8e27b2b1971e, HandlerErrorCode: InvalidRequest)." Can someone help me understand this error and how to resolve it? Thanks!

asked 3 years ago966 views

1 Answer
0

This error message is related to AWS Lambda and the concurrent executions of the function that you are trying to create as a part of the stack setup.

The error message is indicating that the number of concurrent executions you have specified for your Lambda function would result in a total number of concurrent executions that is below the minimum value of 10. In other words, the value of "ReservedConcurrentExecutions" that you have specified for your function would cause the number of concurrent executions available to your account to fall below 10.

To resolve this issue, you can either increase the value of "ReservedConcurrentExecutions" to a value that will result in a total number of concurrent executions above 10, or you can decrease the number of concurrent executions used by other functions in your account to free up more concurrency.

You can manage concurrency for your Lambda functions by using the "ReservedConcurrentExecutions" property in your function configuration. For more information on how to manage concurrency for your Lambda functions, please see the AWS Lambda documentation: https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html

EXPERT

answered 3 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.