SlideShare a Scribd company logo
Reserved Concurrency
?
Serverless on AWS
lessons learned #3
Are you really
production-ready?
The default limit for
concurrent lambda
executions is 1’000 per
account.
1’000
332
executions limit
When this limit is
reached, new lambda
invocations will be
rejected.
1’000
executions limit
This is called
Rate Limiting:
an important concept
in distributed systems.
TooManyRequestsException
Rate limit exceeded
Where is the
problem?
Out of the box, all
lambdas share the
same 1’000 executions.
1’000
All
One lambda function
may consume a lot
concurrent executions
and impair the whole
system!
rest
1
bursting Lambda
999
How to prevent?
Setting the reserved
concurrency option for
each system-critical
lambda function will
ensure separated
execution limits.
*more details in the description
700
332
rest
200
system critical lambda
98
100
bursting lambda
Reserved Concurrency
thumbs up, comment, share
What are your thoughts?
Is anything important missing?
If you liked it, please leave a comment.
connect with me!

More Related Content

PPTX
Serverless lessons learned #2 dead letter queues
PPTX
Serverless lessons learned #8 backoff
PPTX
Serverless lessons learned #5 retries
PPTX
Serverless lessons learned #1 custom sdk timeouts
PPTX
Serverless lessons learned #7 rate limiting
PPTX
Serverless lessons learned #4 circuit breaker
PPTX
Load Testing Serverless Applications And Understanding How Lambda Scales
PPTX
AWS Jungle - Lambda
Serverless lessons learned #2 dead letter queues
Serverless lessons learned #8 backoff
Serverless lessons learned #5 retries
Serverless lessons learned #1 custom sdk timeouts
Serverless lessons learned #7 rate limiting
Serverless lessons learned #4 circuit breaker
Load Testing Serverless Applications And Understanding How Lambda Scales
AWS Jungle - Lambda

What's hot (18)

PDF
The use of aws in the countryside
PPTX
5 Important Points To Remember If You Want To Reduce AWS EC2 Cost
PPTX
Kotlin for backend using serverless + aws lambda
PDF
Serverless Architectures on AWS Lambda
PDF
Reactive Programming in .Net - actorbased computing with Akka.Net
PPTX
Automation of Deep learning training with AWS Step Functions
PPTX
Understand AWS OpsWorks - A DevOps Tool from AWS
PPTX
cloud test 1002i
PPTX
Serverless everywhere
PDF
Pragmatic adoption of serverless at umbraco
PPT
Leveraging Amazon's Elastic Block Store
PPTX
2015 SQL Pass Summit Breakfast session #2
PDF
aws lambda & api gateway
PDF
Mastering AWS Organizations with Infrastructure as code
PDF
Ruby on Rails and AWS Elastic Beanstalk
PDF
Harnessing The Cloud
PDF
Technology | Serverless
PPTX
Serverless
The use of aws in the countryside
5 Important Points To Remember If You Want To Reduce AWS EC2 Cost
Kotlin for backend using serverless + aws lambda
Serverless Architectures on AWS Lambda
Reactive Programming in .Net - actorbased computing with Akka.Net
Automation of Deep learning training with AWS Step Functions
Understand AWS OpsWorks - A DevOps Tool from AWS
cloud test 1002i
Serverless everywhere
Pragmatic adoption of serverless at umbraco
Leveraging Amazon's Elastic Block Store
2015 SQL Pass Summit Breakfast session #2
aws lambda & api gateway
Mastering AWS Organizations with Infrastructure as code
Ruby on Rails and AWS Elastic Beanstalk
Harnessing The Cloud
Technology | Serverless
Serverless
Ad

Recently uploaded (20)

PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
medical staffing services at VALiNTRY
PDF
Cost to Outsource Software Development in 2025
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
iTop VPN Free 5.6.0.5262 Crack latest version 2025
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PPTX
assetexplorer- product-overview - presentation
Design an Analysis of Algorithms II-SECS-1021-03
medical staffing services at VALiNTRY
Cost to Outsource Software Development in 2025
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PTS Company Brochure 2025 (1).pdf.......
iTop VPN Free 5.6.0.5262 Crack latest version 2025
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Softaken Excel to vCard Converter Software.pdf
Operating system designcfffgfgggggggvggggggggg
Odoo Companies in India – Driving Business Transformation.pdf
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Understanding Forklifts - TECH EHS Solution
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
How to Choose the Right IT Partner for Your Business in Malaysia
assetexplorer- product-overview - presentation
Ad

Serverless lessons learned #3 reserved concurrency