A company is using Amazon DynamoDB with Auto Scaling enabled. The database specialist notices that write traffic is being throttled occasionally. Which TWO factors could cause throttling despite Auto Scaling?
Auto Scaling cannot scale beyond the configured maximum.
Why this answer
Auto Scaling in DynamoDB operates within a maximum provisioned capacity ceiling. If write traffic exceeds this configured maximum, Auto Scaling cannot increase capacity further, leading to throttling. The service will return ProvisionedThroughputExceededException for requests that exceed the set maximum.
Exam trap
The trap here is that candidates often assume Auto Scaling eliminates all throttling, but it cannot prevent throttling caused by hot partitions or when traffic exceeds the configured maximum capacity ceiling.