0
0
DynamoDBquery~5 mins

Item size limits and considerations in DynamoDB - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the maximum item size allowed in DynamoDB?
The maximum item size in DynamoDB is 400 KB, which includes all attribute names and values.
Click to reveal answer
beginner
Why should you keep DynamoDB item sizes small?
Smaller item sizes improve read and write performance and reduce costs because DynamoDB charges based on data size and throughput.
Click to reveal answer
beginner
What happens if you try to store an item larger than 400 KB in DynamoDB?
DynamoDB will reject the write request and return a ValidationException because the item exceeds the size limit.
Click to reveal answer
intermediate
How can you handle large data that exceeds DynamoDB's item size limit?
You can split the data into multiple items or store large objects in Amazon S3 and save references in DynamoDB.
Click to reveal answer
beginner
Does the 400 KB item size limit include attribute names or just values?
The 400 KB limit includes the total size of the item, which means both attribute names and attribute values count towards the limit.
Click to reveal answer
What is the maximum size of a single item in DynamoDB?
A10 MB
B1 MB
C100 KB
D400 KB
If your data exceeds DynamoDB's item size limit, what is a common solution?
AIncrease the item size limit in settings
BSplit data into multiple items or use Amazon S3 for large objects
CCompress the data inside the item
DStore data in a single attribute regardless of size
Does the item size limit in DynamoDB include attribute names?
AYes, attribute names and values count towards the limit
BNo, only attribute values count
COnly primary key names count
DOnly attribute names count
What is a benefit of keeping DynamoDB item sizes small?
AMore storage space per table
BAbility to store more attributes per item
CImproved performance and lower costs
DFaster table creation
What error occurs if you try to write an item larger than 400 KB?
AValidationException
BProvisionedThroughputExceededException
CResourceNotFoundException
DConditionalCheckFailedException
Explain the item size limit in DynamoDB and why it matters.
Think about how size affects speed and billing.
You got /4 concepts.
    Describe strategies to handle data larger than DynamoDB's item size limit.
    Consider using other AWS services to complement DynamoDB.
    You got /3 concepts.