How is Amazon DynamoDB throughput calculated and limited?

后端 未结 7 1063
一个人的身影
一个人的身影 2021-01-30 13:32

Is it averaged per second? Per minute? Per hour?

For example.. if I pay for 10 \"read units\" which allows for 10 highly consistent reads per second, will I be throttl

7条回答
  •  花落未央
    2021-01-30 14:13

    The DynamoDB provides 'Burst Capacity' which allows for spikes in amount of data read from table. You can read more about it under: http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GuidelinesForTables.html#GuidelinesForTables.Bursting

    Basically it's what @abjennings noticed - It uses 5min window to average number of reads from a table.

提交回复
热议问题