DEA-C01 Data Store Management Practice Question
A company uses Amazon DynamoDB with on-demand capacity for a gaming application that experiences unpredictable traffic spikes. The application reads the same set of 'hot' items frequently. Users report high latency during peak hours. Which action would MOST effectively reduce read latency for the hot items?
⚠ Common exam trap
Many candidates confuse throughput capacity (RCUs/WCUs) with latency, assuming that increasing capacity will speed up individual reads, when in fact capacity only controls the rate of requests, not the response time per request.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Enable DynamoDB Accelerator (DAX) for the table.
DynamoDB Accelerator (DAX) is an in-memory cache that sits between the application and DynamoDB, providing microsecond read latency for frequently accessed items. Since the application reads the same set of 'hot' items repeatedly, DAX can serve these reads from its cache, bypassing the storage layer and reducing latency during traffic spikes without requiring any table schema changes.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Enable DynamoDB Accelerator (DAX) for the table.
Why this is correct
DAX caches hot items, reducing read latency.
- ✗
Switch to provisioned capacity with auto-scaling.
Why it's wrong here
Auto-scaling may not reduce latency for hot items.
- ✗
Increase the read capacity units for the table.
Why it's wrong here
On-demand capacity automatically scales; manual increase not possible.
- ✗
Enable DynamoDB Global Tables for multi-region replication.
Why it's wrong here
Global Tables improve write availability, not read latency for hot items.
Go deeper
Related to this question
About these practice questions
One of 1,711 original DEA-C01 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
Same concept, more angles
2 more ways this is tested on DEA-C01
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. A company uses Amazon DynamoDB with on-demand capacity for a gaming leaderboard. The table has 100 GB of data and receives 10,000 write requests per second with spikes to 50,000. The application experiences throttling during spikes. Which action should be taken to reduce throttling without changing the application?
hard- A.Write data to Amazon S3 and use S3 Select
- B.Increase the provisioned read capacity units
- ✓ C.Switch to provisioned capacity with Auto Scaling
- D.Enable DynamoDB Accelerator (DAX)
Why C: Switching from on-demand to provisioned capacity with Auto Scaling allows you to set a higher minimum and maximum read/write capacity, ensuring that the table can handle spikes up to 50,000 write requests per second without throttling. This change is made at the table level via the AWS console or CLI and does not require any application code modifications. In contrast, enabling DAX (Option D) would require updating the application to use the DAX client, violating the requirement to avoid application changes. Options A and B are ineffective or incompatible: writing data to S3 does not address DynamoDB write throttling, and increasing provisioned read capacity is not applicable for an on-demand table without switching capacity modes first.
Variation 2. A company has an Amazon DynamoDB table with on-demand capacity mode. The table stores session data for a web application. Recently, the application experienced throttling errors during a traffic spike. The team wants to prevent future throttling while optimizing costs. What should they do?
hard- ✓ A.Implement a DynamoDB Accelerator (DAX) cluster
- B.Enable DynamoDB auto scaling on the table
- C.Switch to provisioned capacity with auto scaling
- D.Increase the read and write capacity of the table
Why A: A DynamoDB Accelerator (DAX) cluster provides an in-memory cache that absorbs read-heavy traffic spikes, reducing the number of read requests that reach the underlying DynamoDB table. Since the throttling errors occurred during a traffic spike and the table uses on-demand capacity, which already scales automatically for writes and reads, the bottleneck is likely read-heavy traffic overwhelming the table's throughput. DAX offloads reads from the table, preventing throttling without requiring any changes to capacity mode, and it is cost-effective because it reduces read capacity unit consumption.
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This DEA-C01 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the DEA-C01 exam.