How much write throughput is required for the target table?

A meteorological system monitors 600 temperature gauges, obtaining temperature samples
every minute and saving each sample to a DynamoDB table. Each sample involves writing
1K of data and the writes are evenly distributed over time. How much write throughput is
required for the target table?

A meteorological system monitors 600 temperature gauges, obtaining temperature samples
every minute and saving each sample to a DynamoDB table. Each sample involves writing
1K of data and the writes are evenly distributed over time. How much write throughput is
required for the target table?

A.
3600 write capacity units

B.
1 write capacity unit

C.
10 write capacity units

D.
60 write capacity units

E.
600 write capacity units



Leave a Reply 12

Your email address will not be published. Required fields are marked *


networkmanagers

networkmanagers

I agree with the answer. C

newAWSuser

newAWSuser

please explain why C?

Romain

Romain

600 temperature gauges is obtained every minute. That makes 10 per seconds.
All writes are 1kb (only unit of read provisioned throughput are rounded up to increment of 4kb)
10 x 1 = 10 units of write throughput

SRI GOVIND GUTALA

SRI GOVIND GUTALA

C
600 gauges per minute
therefore 600/60 = 10 gauges per second
conditional rights = 10 x 1KB = 10 writes

Simon Liang

Simon Liang

C.

Unit of Write Provisioned Throughput:
All writes are 1 KB
All write consist of 1 write per second

BDA

BDA

C – the key phrase being “Writes are evenly distributed over time”, that means per-second so, 10 writes.

certified

certified

yay math!