Skip to content
This repository was archived by the owner on Jun 18, 2020. It is now read-only.

Commit 1c70fda

Browse files
author
asmitab
committed
Correcting syntax for mvn command
1 parent a80116b commit 1c70fda

File tree

1 file changed

+12
-19
lines changed

1 file changed

+12
-19
lines changed

README.md

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,18 @@
22

33
## Running as an executable
44

5-
mvn exec:java -Dexec.mainClass="com.amazonaws.dynamodb.bootstrap.CommandLineInterface" -Dexec.args="
6-
7-
--destinationEndpoint dynamodb.us-east-1.amazonaws.com // the endpoint where the destination table is located.
8-
9-
--destinationTable nameOfDestinationTable // the destination table to write to.
10-
11-
--sourceEndpoint dynamodb.us-west-1.amazonaws.com // the endpoint where the source table is located.
12-
13-
--sourceTable nameOfSourceTable // the source table to read from.
14-
15-
--readThroughputRatio .5 // the ratio of read throughput to consume from the source table.
16-
17-
--writeThroughputRatio .7 // the ratio of write throughput to consume from the destination table.
18-
19-
--maxWriteThreads 128 // (Optional, default=128 * Available_Processors) Maximum number of write threads to create.
20-
21-
--totalSections 4 // (Optional, default=1) Total number of sections to split the bootstrap into. Each application will only scan and write one section.
22-
23-
--section 3 // (Optional, default=0) section to read and write. Only will scan this one section of all sections, [0...totalSections-1]."
5+
mvn exec:java -Dexec.mainClass="com.amazonaws.dynamodb.bootstrap.CommandLineInterface" \
6+
-Dexec.args=" \
7+
--destinationEndpoint dynamodb.us-east-1.amazonaws.com \
8+
--destinationTable nameOfDestinationTable \
9+
--sourceEndpoint dynamodb.us-west-1.amazonaws.com \
10+
--sourceTable nameOfSourceTable \
11+
--readThroughputRatio .5 \
12+
--writeThroughputRatio .7 \
13+
--maxWriteThreads 128 \
14+
--totalSections 4 \
15+
--section 3"
16+
2417

2518
## Using the API
2619

0 commit comments

Comments
 (0)