Hard1 markMultiple Choice
AWS SAA-C03 · Question 60 · Domain 3.3: Database Performance
A company is designing an application that will write thousands of records per second to an Amazon DynamoDB table. The partition key is based on the date (e.g., '2023-10-25'). During load testing, the application experiences heavy throttling, even though the total provisioned write capacity is higher than the write rate. <br/><br/>What is the MOST likely cause of this issue?
A company is designing an application that will write thousands of records per second to an Amazon DynamoDB table. The partition key is based on the date (e.g., '2023-10-25'). During load testing, the application experiences heavy throttling, even though the total provisioned write capacity is higher than the write rate. <br/><br/>What is the MOST likely cause of this issue?
Answer options:
A.
The DynamoDB table is in the wrong AWS Region.
B.
The partition key design is causing a hot partition.
C.
DynamoDB Auto Scaling is not enabled.
D.
The application is using eventually consistent reads.
How to approach this question
Recognize that sequential or low-cardinality partition keys (like dates) cause hot partitions in NoSQL databases.
Full Answer
B.The partition key design is causing a hot partition.✓ Correct
The partition key design is causing a hot partition.
In DynamoDB, provisioned throughput is divided evenly among partitions. If your workload is heavily skewed toward one partition key (like today's date), that partition becomes 'hot' and will throttle requests, even if the table's overall capacity is sufficient. A high-cardinality partition key (like a UUID) is required.
Common mistakes
Assuming Auto Scaling fixes poor database schema design.
Practice the full AWS SAA-C03 Practice Exam 4
65 questions · hints · full answers · grading
More questions from this exam
Q01A company has multiple AWS accounts in an AWS Organizations organization. The security team wants...MediumQ02An application running on Amazon EC2 instances needs to access an Amazon DynamoDB table. Both res...EasyQ03A company is designing a web application that will be hosted on AWS. The application will use an ...MediumQ04A company is building a mobile app that requires users to authenticate using their social media a...HardQ05A solutions architect is designing a VPC for a three-tier web application. The database tier must...Medium
Expert