A developer is designing an online bookstore's catalog system where inventory updates and search queries must be highly optimized. The application writes book metadata updates per second to an Amazon DynamoDB table, with each write payload size averaging . To support real-time inventory dashboards, the application runs strongly consistent `Query` operations per second. Each `Query` returns a list of book items associated with a specific publisher (the partition key), and each book item has an average size of . Which of the following represents the minimum provisioned read capacity units (RCUs) and write capacity units (WCUs) required to support this workload?
- and Cevap
- Band
- Cand
- Dand
Cevap
The correct answer is and .
The correct answer is and . Each write payload of is rounded up to . Writing items per second requires . For reads, a single Query returns items of each, totaling of data. This cumulative size is rounded up to the nearest boundary, which is . Since strongly consistent reads require per block, each Query consumes . Executing queries per second requires .
Adım Adım Çözüm
Anahtar Kavram
Calculation of DynamoDB Read and Write Capacity Units (RCUs and WCUs) for Batch/Query Operations