Skip to content

Commit

Permalink
Add dynamodb sample for overriding default provisioning capacity units (
Browse files Browse the repository at this point in the history
  • Loading branch information
JadCham authored and cyriltovena committed Jun 12, 2019
1 parent 44c3213 commit 7cfce6e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit 7cfce6e

Please sign in to comment.