Which TWO design patterns are commonly used to handle hot partitions in Amazon DynamoDB? (Choose 2.)
Distributes writes across many partition key values.
Why this answer
Write sharding distributes writes across multiple partition keys to prevent a single partition from exceeding the 1,000 WCU limit. Adding random suffixes to partition keys is a specific write sharding technique that spreads writes across many partitions, avoiding hot spots.
Exam trap
AWS often tests the misconception that increasing capacity units alone resolves hot partitions, but the real solution requires redistributing the workload across partitions via sharding or suffix-based strategies.