An application uses a DynamoDB table to store data with each record being 6KB in size.
The application needs to perform 100 eventually consistent read operations per second and 40 write operations per second.
What is the provisioned WCU value required to meet these requirements?
Click on the arrows to vote for the correct answer
A. B. C. D.Answer: B.
Option B is CORRECT.
One write capacity unit is equivalent to one write per second for an item up to 1 KB in size.
Thus, the required WCU in this scenario is 6KB x 40 write operations per second = 240 WCU.
Reference:
https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.ProvisionedThroughput.ManualTo determine the provisioned WCU value required to meet the read and write requirements of the application, we need to consider the following:
Given that each item in the table is 6 KB in size, we need to calculate the number of RCUs and WCUs required to meet the application's needs:
Therefore, the provisioned WCU value required to meet these requirements is 240 WCUs, which corresponds to answer B.