You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 18, 2020. It is now read-only.
System.err.println("Encountered exception when executing transfer: " + e.getMessage());
119
126
System.exit(1);
120
-
} catch (InterruptedException e){
121
-
System.err.println("Interrupted when executing transfer: " + e.getMessage());
122
-
System.exit(1);
123
127
}
124
128
}
125
129
}
@@ -128,13 +132,15 @@ class TransferDataFromOneTableToAnother {
128
132
129
133
### 2. Transfer Data From one DynamoDB Table to a Blocking Queue.
130
134
131
-
The below example will read from a DynamoDB table and export to an array blocking queue. This is useful for when another application would like to consume
132
-
the DynamoDB entries but does not have a setup application for it. They can just retrieve the queue (consumer.getQueue()) and then continually pop() from it
135
+
The below example will read from a DynamoDB table and export to an array blocking queue.
136
+
This is useful for when another application would like to consume
137
+
the DynamoDB entries but does not have a setup application for it.
138
+
They can just retrieve the queue (consumer.getQueue()) and then continually pop() from it
@Parameter(names = COPY_STREAM_SPECIFICATION_WHEN_CREATING, description = "Use the source table stream specification for the destination table during its creation.")
65
84
privatebooleancopyStreamSpecification;
@@ -83,7 +102,7 @@ public boolean getHelp() {
83
102
publicstaticfinalStringSECTION = "--section";
84
103
@Parameter(names = SECTION, description = "Section number to scan when running multiple programs concurrently [0, 1... totalSections-1]", required = false)
@Parameter(names = CONSISTENT_SCAN, description = "Use this flag to use strongly consistent scan. If the flag is not used it will default to eventually consistent scan")
0 commit comments