0
0
DynamoDBquery~20 mins

CloudWatch metrics for DynamoDB - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
DynamoDB CloudWatch Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2: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?
AConsumedWriteCapacityUnits
BConsumedReadCapacityUnits
CReadThrottleEvents
DWriteThrottleEvents
Attempts:
2 left
💡 Hint
Think about the metric that tracks read operations usage.
query_result
intermediate
2: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?
AThe table is underutilized and has spare write capacity.
BThe table has no write activity.
CThe table is experiencing throttling on write requests due to exceeding provisioned capacity.
DThe table's read requests are being throttled.
Attempts:
2 left
💡 Hint
Focus on what throttling means in DynamoDB context.
📝 Syntax
advanced
2: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?
ATableSizeBytes
BTableSize
CTotalTableSizeBytes
DSizeBytes
Attempts:
2 left
💡 Hint
Look for the exact metric name used by AWS CloudWatch for table size.
optimization
advanced
2: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?
ADecrease the provisioned read capacity units to save cost.
BSwitch to eventually consistent reads to reduce read capacity usage.
CDisable CloudWatch monitoring to reduce overhead.
DIncrease the provisioned read capacity units for the table.
Attempts:
2 left
💡 Hint
Think about how to handle capacity limits and throttling.
🔧 Debug
expert
2: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?
AA large number of small write requests causing inefficient capacity usage.
BThe table is being read heavily, causing write capacity to spike.
CThe table's read capacity units are being consumed instead.
DCloudWatch metrics are delayed and not accurate.
Attempts:
2 left
💡 Hint
Consider how write request size affects capacity consumption.