0
0
AWScloud~5 mins

API Gateway throttling in AWS - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is API Gateway throttling?
API Gateway throttling is a way to limit the number of requests a client can make to an API in a given time. It helps protect the backend from too much traffic and keeps the system stable.
Click to reveal answer
beginner
What are the two main throttling limits in AWS API Gateway?
The two main limits are the rate limit (requests per second) and the burst limit (maximum number of requests allowed in a short time).
Click to reveal answer
intermediate
How does burst capacity help in API Gateway throttling?
Burst capacity allows short spikes of traffic above the steady rate limit. It acts like a temporary buffer to handle sudden bursts without rejecting requests immediately.
Click to reveal answer
beginner
What happens when a client exceeds the throttling limits in API Gateway?
The API Gateway returns a 429 Too Many Requests error to the client, indicating the request was rejected due to throttling.
Click to reveal answer
intermediate
How can you customize throttling settings per API key in AWS API Gateway?
You can create usage plans that specify throttling limits and associate them with API keys. This allows different clients to have different rate and burst limits.
Click to reveal answer
What does the burst limit in API Gateway throttling control?
ANumber of concurrent connections
BTotal requests per day
CMaximum requests allowed in a short time
DSize of the request payload
What HTTP status code does API Gateway return when throttling limits are exceeded?
A429 Too Many Requests
B500 Internal Server Error
C403 Forbidden
D404 Not Found
Which AWS feature allows setting different throttling limits for different clients?
AIAM Roles
BUsage Plans with API Keys
CLambda Functions
DCloudWatch Alarms
Why is throttling important in API Gateway?
ATo encrypt API requests
BTo increase API response size
CTo speed up database queries
DTo protect backend from overload
If your API experiences sudden traffic spikes, which throttling setting helps handle them temporarily?
ABurst limit
BTimeout setting
CRate limit
DCache size
Explain how API Gateway throttling works and why it is important for system stability.
Think about how limiting requests helps keep the system healthy.
You got /5 concepts.
    Describe how you can customize throttling for different clients using AWS API Gateway features.
    Consider how different users might have different access needs.
    You got /4 concepts.