0
0
DynamoDBquery~5 mins

Transaction limits in DynamoDB - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the maximum number of items you can include in a single DynamoDB transaction?
You can include up to 100 items in a single DynamoDB transaction.
Click to reveal answer
beginner
What is the maximum size limit for a single item in a DynamoDB transaction?
Each item in a DynamoDB transaction can be up to 400 KB in size.
Click to reveal answer
beginner
True or False: DynamoDB transactions can span multiple tables.
True. DynamoDB transactions can include operations on multiple tables within the same AWS account and region.
Click to reveal answer
intermediate
What is the maximum total size of all items in a single DynamoDB transaction?
The total size of all items in a single DynamoDB transaction cannot exceed 4 MB.
Click to reveal answer
intermediate
Why is it important to keep transaction size limits in mind when designing DynamoDB operations?
Because exceeding transaction limits causes the transaction to fail, which can affect application reliability and performance.
Click to reveal answer
What is the maximum number of operations allowed in a single DynamoDB transaction?
A25
B100
C50
D10
What is the maximum size of a single item in a DynamoDB transaction?
A400 KB
B2 MB
C256 KB
D1 MB
Can a DynamoDB transaction include operations on multiple tables?
ANo, only one table per transaction
BYes, but only if tables are in different regions
CYes, if tables are in the same AWS account and region
DNo, transactions are limited to a single partition key
What happens if a DynamoDB transaction exceeds the size or item count limits?
AThe transaction fails and no changes are applied
BOnly the first 25 items are processed
CThe transaction is automatically split
DThe transaction is queued for later processing
What is the maximum total size of all items in a single DynamoDB transaction?
A10 MB
B2 MB
C1 MB
D4 MB
Explain the key transaction limits in DynamoDB and why they matter.
Think about item count, item size, total size, and multi-table support.
You got /5 concepts.
    Describe what happens if a DynamoDB transaction exceeds its limits during execution.
    Consider the atomic nature of transactions.
    You got /4 concepts.