serverless-api-gateway-throttling

Intro
A plugin for the Serverless framework which configures throttling for API Gateway endpoints.
Why?
When you deploy an API to API Gateway, throttling is enabled by default. However, the default method limits – 10,000 requests/second with a burst of 5000 concurrent requests – match your account level limits. As a result, ALL your APIs in the entire region share a rate limit that can be exhausted by a single method. Read more about that here.
This plugin makes it easy to configure those limits.
Good to know
- if custom throttling settings are defined for an endpoint with HTTP method
ANY
, the settings will be applied to all methods: GET
, DELETE
, HEAD
, OPTIONS
, PATCH
, POST
and PUT
.
Examples
plugins:
- serverless-api-gateway-throttling
custom:
apiGatewayThrottling:
maxRequestsPerSecond: 1000
maxConcurrentRequests: 500
functions:
update-item:
handler: rest_api/item/post/handler.handle
events:
- http:
path: /item
method: post
list-all-items:
handler: rest_api/items/get/handler.handle
events:
- http:
path: /items
method: get
throttling:
maxRequestsPerSecond: 2000
maxConcurrentRequests: 1000
get-item:
handler: rest_api/items/get/handler.handle
events:
- http:
path: /item/{itemId}
method: get
- http:
path: /another/item/{itemId}
method: get
throttling:
maxRequestsPerSecond: 2000
maxConcurrentRequests: 1000
get-blue-item:
handler: rest_api/items/blue/get/handler.handle
events:
- http:
path: /item/blue/{itemId}
method: get
throttling:
maxRequestsPerSecond: 300
- http:
path: /item/dark-blue/{itemId}
method: get
throttling:
maxConcurrentRequests: 300