0
0
DynamoDBquery~5 mins

Read and write capacity units in DynamoDB - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a Read Capacity Unit (RCU) in DynamoDB?
A Read Capacity Unit represents one strongly consistent read per second, or two eventually consistent reads per second, for items up to 4 KB in size.
Click to reveal answer
beginner
What does a Write Capacity Unit (WCU) represent in DynamoDB?
A Write Capacity Unit represents one write per second for items up to 1 KB in size.
Click to reveal answer
intermediate
How does item size affect the number of capacity units consumed?
If an item is larger than the base size (4 KB for reads, 1 KB for writes), DynamoDB rounds up and consumes additional capacity units accordingly.
Click to reveal answer
intermediate
What is the difference between strongly consistent and eventually consistent reads in terms of capacity units?
Strongly consistent reads consume double the capacity units compared to eventually consistent reads for the same item size.
Click to reveal answer
beginner
Why is it important to correctly estimate read and write capacity units?
Correct estimation helps avoid throttling, ensures good performance, and controls costs by not over-provisioning or under-provisioning capacity.
Click to reveal answer
How many strongly consistent reads per second does 5 Read Capacity Units allow for items up to 4 KB?
A20
B5
C2.5
D10
If you write an item of 3 KB, how many Write Capacity Units are consumed?
A3
B2
C1
D4
Which type of read consumes fewer capacity units?
AStrongly consistent read
BBoth consume the same
CDepends on item size only
DEventually consistent read
What happens if your application exceeds provisioned capacity units?
ARequests are queued indefinitely
BRequests succeed without delay
CDynamoDB throttles requests
DDynamoDB increases capacity automatically
Why might you choose on-demand capacity mode instead of provisioned capacity?
ATo avoid managing capacity units manually
BTo reduce storage costs
CTo increase item size limits
DTo enable strongly consistent reads only
Explain what Read Capacity Units and Write Capacity Units represent in DynamoDB and how item size affects their consumption.
Think about how many reads or writes per second one unit supports and how bigger items use more units.
You got /4 concepts.
    Describe why it is important to estimate read and write capacity units correctly when designing a DynamoDB table.
    Consider what happens if you set capacity too low or too high.
    You got /4 concepts.