Uniform workload

For uniform data access within items in your tables, you have to identify the workload patterns on items/tables. Your provisioned throughput is dependent on the primary key plus pattern of workload on items. At the time of storing data, DynamoDB will divide your items into more than one partition and will distribute your data based on the hash key element. So your throughput will be associated with a table which is also divided among partitions. This throughput will be based on no sharing among all partitions.

To get the quantity of requested throughput, you have to keep your workload spread out evenly among the hash key values. By distributing the hash key values, you can distribute the requests across multiple partitions.

Let's ...

Get DynamoDB Applied Design Patterns now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.