アイテムをタイムスタンプ順に並べる方法が必要なので、共通のハッシュ キーと UNIX タイムスタンプを範囲キーとして使用することを検討しています。
FAQによると:
When storing data, Amazon DynamoDB divides a table into multiple partitions and
distributes the data based on the hash key element of the primary key. The provisioned
throughput associated with a table is also divided among the partitions; each
partition's throughput is managed independently based on the quota allotted to it.
There is no sharing of provisioned throughput across partitions.
共通のハッシュ キーを使用しているため、すべての負荷が 1 つのパーティションに移動するため、不均一な負荷分散は発生しません。
したがって、100 write
このパーティションにプロビジョニングすると、すべての容量が使用されますが、容量が無駄にならないのは良いことだと思いますか?