AppSync Blog App Creation Fail

0

I am trying to create an AppSync API using the Blog App sample project. When I try to create it, the process fails. The error that I receive in the CloudFormation logs is: "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:"

I've checked my other Lambda functions, and I don't see any function that are using any reserved executions. Is there any way for me to get this to work?

1 Answer
0

The AWS Service Quotas page for Lambda has a Concurrent Executions page that contains monitoring. It's possible something is using more execution than you realize or perhaps your service quota is lower than the standard for some reason. I'd check there regardless of the fix.

Getting to the answer though, some potential fixes:

  1. Request a higher concurrent execution value in the Service Quotas area of the console
  2. Reduce or remove the configuration to add concurrency to the Lambda. I'm not sure of the exact sample you're using, but this may be in a configuration for the Lambda function or extracted in a generic configuration somewhere else.
    • This documentation page will help shed some light on how it isn't necessarily reserved concurrency causing the problem, but could be executions in general: Reserved Concurrency
answered a year ago
  • I tried creating the API in a region that has no functions, since execution quotas are based on regions, and I still had the error. I did request an increase to 20 concurrent executions to see if that will correct the error. I'll update the post once the request is complete.

    Since this is an AWS template that I am using, I'm not able to change the configuration prior to creation. The Blog app I am trying to create is from the templates in AppSync. In AppSync, click on Create API. Step 1 in creating the API has an option to start from a sample project. I am trying to use the Blog App sample in order to learn how to connect the API to RDS using Lambda.

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.

Guidelines for Answering Questions