What is the write capacity for 1 WCU?
1 write per second up to 1KB each
Calculate these WCU:
• Example 1: we write 10 objects per second of 2 KB each.
• Example 2: we write 6 objects per second of 4.5 KB each
• Example 3: we write 120 objects per minute of 2 KB each
What is the read capacity for 1 strongly consistent RCU?
2 reads per second up to 4KB each
What is the read capacity for 1 eventually consistent RCU?
1 read per second up to 4KB each
Calculate these RCUs:
What is the maximum data size for a DynamoDB partition?
10GB
What is the maximum RCUs for a DynamoDB partition?
3000
What is the maximum WCUs for a DynamoDB partition?
1000
What is the maximum record size in DynamoDB?
400KB
What is the minimum record size in DynamoDB?
1 byte
How DynamoDB Scan works?
What is a Local Secondary Index (LSI) in DynamoDB?
It is an alternate range key for your table, local to the hash key.
It can only be defined at table creation time
What is a Global Secondary Index (GSI) in DynamoDB?
What is the default DynamoDB TTL configuration duration?
48h
How can you store large objects using DynamoDB?
As DynamoDB max item size is 400kb, you can store the large object in S3 and store only its metadata in DynamoDB, pointing to the correct location.