Reputation: 1755
Does anyone know what is the maximum size of Item payload that amazon dynamo DB supports? I am sure its buried in documentation somewhere.
My follow-up question is that when you upload large chunk of data if there is a connection drop (client or server), is there a way to resume the upload from where you left off?
Upvotes: 19
Views: 63244
Reputation: 1755
This is what i could figure from documentation
Large data needs to be stored in Amazon S3 with url pointing to the data ?
Upvotes: 5
Reputation: 269151
The maximum size of a DynamoDB item is 400KB.
From the Limits in DynamoDB documentation:
The maximum item size in DynamoDB is 400 KB, which includes both attribute name binary length (UTF-8 length) and attribute value lengths (again binary length). The attribute name counts towards the size limit.
Upvotes: 45