Challenge - 5 Problems
DynamoDB CloudWatch Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Understanding Read Capacity Units (RCUs) in DynamoDB CloudWatch Metrics
Which CloudWatch metric indicates the number of strongly consistent reads consumed per second by a DynamoDB table?
Attempts:
2 left
💡 Hint
Think about the metric that tracks read operations usage.
✗ Incorrect
The ConsumedReadCapacityUnits metric shows the number of read capacity units consumed per second, including strongly consistent reads.
❓ query_result
intermediate2:00remaining
Interpreting Throttling Events from CloudWatch Metrics
If a DynamoDB table's CloudWatch metric
WriteThrottleEvents shows a value greater than zero, what does this indicate?Attempts:
2 left
💡 Hint
Focus on what throttling means in DynamoDB context.
✗ Incorrect
WriteThrottleEvents counts the number of write requests that were throttled because the table exceeded its provisioned write capacity.
📝 Syntax
advanced2:00remaining
Correct CloudWatch Metric Name for DynamoDB Table Size
Which of the following is the correct CloudWatch metric name to monitor the total size of a DynamoDB table in bytes?
Attempts:
2 left
💡 Hint
Look for the exact metric name used by AWS CloudWatch for table size.
✗ Incorrect
The correct metric name is TableSizeBytes, which reports the total size of the table in bytes.
❓ optimization
advanced2:00remaining
Optimizing DynamoDB Table Performance Using CloudWatch Metrics
You notice that the
ConsumedReadCapacityUnits metric is consistently close to the provisioned read capacity, and ReadThrottleEvents occasionally spikes. What is the best action to reduce throttling?Attempts:
2 left
💡 Hint
Think about how to handle capacity limits and throttling.
✗ Incorrect
Increasing provisioned read capacity units allows more read requests per second, reducing throttling.
🔧 Debug
expert2:00remaining
Diagnosing Unexpected High Write Capacity Consumption
A DynamoDB table shows unexpectedly high
ConsumedWriteCapacityUnits in CloudWatch, but your application writes are low. Which of the following is the most likely cause?Attempts:
2 left
💡 Hint
Consider how write request size affects capacity consumption.
✗ Incorrect
Many small writes consume more write capacity units inefficiently, causing high ConsumedWriteCapacityUnits despite low write count.