Medium1 markMultiple Choice
Domain 3.3: Database PerformanceDomain 3PerformanceDynamoDBPartitions

AWS SAA-C03 · Question 45 · Domain 3.3: Database Performance

A company uses Amazon DynamoDB to store user activity logs. The partition key is the UserID, and the sort key is the Timestamp. A small number of highly active users are causing ProvisionedThroughputExceededException errors, even though the overall table capacity seems sufficient. What is the MOST likely cause of this issue?

Answer options:

A.

The table has a hot partition due to uneven data access patterns.

B.

The DynamoDB table is located in the wrong AWS Region.

C.

The sort key (Timestamp) is causing sequential writes.

D.

DynamoDB Auto Scaling is not enabled.

How to approach this question

Identify the symptom: overall capacity is fine, but specific keys are throttling. This is the definition of a 'hot partition'.

Full Answer

A.The table has a hot partition due to uneven data access patterns.✓ Correct
The table has a hot partition due to uneven data access patterns.
DynamoDB partitions data based on the partition key. Provisioned throughput is divided evenly among these partitions. If a small number of partition keys (highly active users) receive a disproportionate amount of traffic, those specific partitions will become 'hot' and throttle requests, even if the table's overall capacity is not fully utilized.

Common mistakes

Assuming Auto Scaling fixes hot partitions. It doesn't; you need to redesign the partition key to distribute traffic evenly.

Practice the full AWS SAA-C03 Practice Exam 1

65 questions · hints · full answers · grading

More questions from this exam