Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我的 DynamoDB 中是否有一个字段,其字典大小为 1KB,并且我通过将数字向前迭代“1”来更新字典中的一个键值对,亚马逊会向我收取 8 个字节的费用需要写一个整数,还是亚马逊会向我收取 1KB 的写操作来更改我字典的一小部分?
Dynamo 中的任何写入操作都至少消耗 1 个写入单元,因此对于 1KB(或更小)的对象,即使增加计数器也会消耗 1 个写入单元。但如果项目为 2KB,您将消耗 2 个写入单元。
每秒写入的项目数 × 1 KB 项目大小
http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughputIntro.html#ProvisionedThroughputIntro.Writes