Skip to content

Commit 585682c

Browse files
authored
Update storage-aws.md on obsolete aws tags argument. (#2564)
Table manager can automatically add AWS tags to created DynamoDB tables. Previously this was done using a command line argument like “-dynamodb.index-table.tag=foo=bar” but this moved onto the schema configuration in PR #2221 This PR updates this old reference on the cli argument. Signed-off-by: Juho Mäkinen <[email protected]>
1 parent f4a7a7c commit 585682c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/production/storage-aws.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ example set of command-line parameters from a fairly modest install:
6060
-dynamodb.periodic-table.write-throughput.scale.out-cooldown=300 # 5 minutes between scale ups
6161
-dynamodb.periodic-table.inactive-enable-ondemand-throughput-mode=true
6262
-dynamodb.periodic-table.read-throughput=300
63-
-dynamodb.periodic-table.tag=product_area=cortex
6463
6564
-dynamodb.chunk-table.write-throughput=800
6665
-dynamodb.chunk-table.write-throughput.scale.enabled=true
@@ -69,7 +68,6 @@ example set of command-line parameters from a fairly modest install:
6968
-dynamodb.chunk-table.write-throughput.scale.out-cooldown=300 # 5 minutes between scale ups
7069
-dynamodb.chunk-table.inactive-enable-ondemand-throughput-mode=true
7170
-dynamodb.chunk-table.read-throughput=300
72-
-dynamodb.chunk-table.tag=product_area=cortex
7371
```
7472

7573
Several things to note here:
@@ -88,3 +86,6 @@ Several things to note here:
8886
- `ondemand-throughput-mode` tells AWS to charge for what you use, as
8987
opposed to continuous provisioning. This mode is cost-effective for
9088
older data, which is never written and only read sporadically.
89+
- If you want to add AWS tags to the created DynamoDB tables you
90+
can do it by adding a `tags` map to your schema definition. See
91+
[`schema configuration`](../configuration/schema-config-reference.md)

0 commit comments

Comments
 (0)