0 votes
in AWS by

You've define a DynamoDB table with a read capacity of 5 and a write capacity of 5.Which of the following statements are TRUE? Choose 3 answers from the options given below.

1 Answer

0 votes
by

Answer - A, D and E.

This is also given in the AWS Documentation.

For example, suppose that you create a table with 5 read capacity units and 5 write capacity units.

With these settings, your application could:

Perform strongly consistent reads of up to 20 KB per second (4 KB × 5 read capacity units).

Perform eventually consistent reads of up to 40 KB per second (twice as much read throughput).

Write up to 5 KB per second (1 KB × 5 write capacity units).

Based on the documentation, all other options are incorrect.

...