AWS - API GatewayFor an API with unpredictable traffic spikes, which throttling configuration best ensures backend stability while minimizing user impact?ADisable throttling and rely on backend auto-scalingBSet rateLimit equal to burstLimit to strictly cap requestsCSet a moderate rateLimit with a higher burstLimit to absorb sudden spikesDSet very low rateLimit and burstLimit to prevent any spikesCheck Answer
Step-by-Step SolutionSolution:Step 1: Understand traffic patternUnpredictable spikes require flexibility to handle bursts without rejecting requests immediately.Step 2: Evaluate optionsModerate rateLimit with higher burstLimit allows absorbing spikes while protecting backend.Step 3: Exclude other optionsEqual rate and burst limits are too rigid; disabling throttling risks overload; very low limits cause excessive throttling.Final Answer:Set a moderate rateLimit with a higher burstLimit to absorb sudden spikes -> Option CQuick Check:Use burstLimit > rateLimit for spike tolerance [OK]Quick Trick: Use burstLimit higher than rateLimit for spikes [OK]Common Mistakes:MISTAKESSetting burstLimit equal to rateLimit, limiting flexibilityDisabling throttling and risking backend overloadSetting limits too low causing unnecessary throttling
Master "API Gateway" in AWS9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallTime
More AWS Quizzes AWS Lambda - Environment variables in Lambda - Quiz 4medium CloudWatch - Log groups and log streams - Quiz 8hard CloudWatch - CloudWatch alarms - Quiz 2easy CloudWatch - CloudWatch metrics - Quiz 9hard Elastic Load Balancing - Application Load Balancer (ALB) - Quiz 14medium Elastic Load Balancing - Cross-zone load balancing - Quiz 2easy RDS and Relational Databases - Parameter groups and option groups - Quiz 6medium RDS and Relational Databases - Read replicas for performance - Quiz 11easy RDS and Relational Databases - Launching an RDS instance - Quiz 9hard SNS and SQS - Standard vs FIFO queues - Quiz 13medium