webjockey
webjockey

Reputation: 1755

Maximum size of DynamoDB item

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

Answers (2)

webjockey
webjockey

Reputation: 1755

This is what i could figure from documentation

  • Unlimited attributes /item
  • Unlimited item /table
  • 400KB max /attribute - 64KB max /item name [Edited per documentation --an item name must be at least one character long, but not greater than 64 KB long.]

Large data needs to be stored in Amazon S3 with url pointing to the data ?

Upvotes: 5

John Rotenstein
John Rotenstein

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

Related Questions