I'd like to figure out the size of items in my Amazon DynamoDB table or the full size so i can accurately forecast costs in a project I'm working on.
I understand that for every 4kb of data read it will use 1RCU. So now id like to find out the size for every entry or the total table.
The AWS Command "describe-table" will give you metadata for the given table.
aws dynamodb describe-table --table-name [table name]
The output will have a parameter
"TableSizeBytes": 0,
Which will give you "The total size of the specified table, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value."
Per documentation
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With