How does throttling on my global secondary index affect my Amazon DynamoDB table?

2 minute read
1

My global secondary index (GSI) is throttled.

Short description

Throttling on a GSI affects the base table in different ways. The effect depends on whether the throttling is for read activity or for write activity:

  • When a GSI has insufficient read capacity, throttling doesn't affect the base table.
  • When a GSI has insufficient write capacity, throttling results in write operations that fail on the base table or any of its GSIs.

For more information, see Using global secondary indexes in DynamoDB.

Resolution

To prevent throttling, follow these steps:

  • Be sure that the provisioned write capacity for each GSI is equal to or greater than the provisioned write capacity of the base table. To modify the provisioned throughput of a GSI, use the UpdateTable operation. If you turned on automatic scaling for the base table, then it's a best practice to apply the same settings to the GSI. To do this, choose Copy from base table in the DynamoDB console. For best performance, turn on Use the same read/write capacity settings for all global secondary indexes. This allows DynamoDB auto scaling to uniformly scale all the global secondary indexes on the base table. For more information, see Activating DynamoDB auto scaling on existing tables.
  • Be sure that the GSI's partition key distributes read and write operations as evenly as possible across partitions. This helps prevent hot partitions and therefore throttling. For more information, see Designing partition keys to distribute your workload.
  • To identify the most frequently throttled keys, use Amazon CloudWatch Contributor Insights for DynamoDB.
AWS OFFICIAL
AWS OFFICIALUpdated 7 months ago
2 Comments

This (the throttling of writes that can occur due to a hot GSI key) is a real shame. As it defeats one of the main reasons you would use a GSI in the first place - i.e. to enable querying by commonly occuring attributes. As GSIs do not support consistent read operations anyway surely there is a way of removing or mitigating this limitation?

replied 7 months ago

Thank you for your comment. We'll review and update the Knowledge Center article as needed.

profile pictureAWS
MODERATOR
replied 7 months ago