From 7cfce6e5e4aafd4562a48238c8998883fadfc2e6 Mon Sep 17 00:00:00 2001 From: Jad Chamoun Date: Wed, 12 Jun 2019 13:35:48 -0700 Subject: [PATCH] Add dynamodb sample for overriding default provisioning capacity units (#626) --- docs/operations.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/operations.md b/docs/operations.md index e4c5859631..887345da14 100644 --- a/docs/operations.md +++ b/docs/operations.md @@ -189,3 +189,15 @@ If you set your DynamoDB table manually, ensure you set the primary index key to (string) and use `r` (binary) as the sort key. Also set the "period" attribute in the yaml to zero. Make sure adjust your throughput base on your usage. +DynamoDB's table manager client defaults provisioning capacity units read to 300 and writes to 3000. +If you wish to override these defaults the config section should include: + +```yaml +table_manager: + index_tables_provisioning: + provisioned_write_throughput: 10 + provisioned_read_throughput: 10 + chunk_tables_provisioning: + provisioned_write_throughput: 10 + provisioned_read_throughput: 10 +```