Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to unthrottle lambda function where button was clicked to throttle

Tags:

aws-lambda

I decided to click on the throttle button on the aws lambda interface in order to prevent further activation of the function while debugging an issue in the process. I see no way to now remove the throttle.

How do I go about removing the throttle now that I clicked on the throttle button?

Regards Conteh

like image 676
conteh Avatar asked Jan 20 '20 17:01

conteh


People also ask

What happens when the lambda function is throttled?

At the highest level, throttling just means that Lambda will intentionally reject one of your requests and so what we see from the user side is that when making a client call, Lambda will throw a throttling exception, which you need to handle. Typically, people handle this by backing off for some time and retrying.

How do I stop Lambda throttling?

Lambda function throttling can be prevented by a few techniques, it can be done by requesting a higher limit of concurrent executions for your AWS account. You can increase your account's concurrency limit at no cost, this can prevent your application from lambda function throttling but cannot eliminate it.

What does throttle mean in AWS?

AWS throttling limits are applied across all accounts and clients in a region. These limit settings exist to prevent your API—and your account—from being overwhelmed by too many requests. These limits are set by AWS and can't be changed by a customer.


1 Answers

I noticed that scrolling down to concurrency on the on the configuration tab. The reserve concurrency was set to 0. Adjusting this to a positive number removes the throttle.

like image 174
conteh Avatar answered Oct 09 '22 22:10

conteh