Skip to content

Commit 43754e1

Browse files
committed
GH-76: DynamoDbMDStore: add create retry options
Resolves #77 Resolves #76 Add configuration options in the `DynamoDbMetaDataStore` for the retry policy for the `DescribeTableRequest` Change the `createTableLatch` to wait for the whole retry time
1 parent 4642130 commit 43754e1

File tree

3 files changed

+24
-10
lines changed

3 files changed

+24
-10
lines changed

gradle/wrapper/gradle-wrapper.jar

-4 Bytes
Binary file not shown.
+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Wed Jul 26 16:30:33 EDT 2017
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
43
zipStoreBase=GRADLE_USER_HOME
54
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0.1-bin.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-bin.zip

src/main/java/org/springframework/integration/aws/metadata/DynamoDbMetaDataStore.java

+23-8
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,13 @@ public class DynamoDbMetaDataStore implements ConcurrentMetadataStore, Initializ
8080

8181
private final CountDownLatch createTableLatch = new CountDownLatch(1);
8282

83-
private Long readCapacity = 10000L;
83+
private int createTableRetries = 25;
8484

85-
private Long writeCapacity = 10000L;
85+
private int createTableDelay = 1;
86+
87+
private long readCapacity = 1L;
88+
89+
private long writeCapacity = 1L;
8690

8791
public DynamoDbMetaDataStore(AmazonDynamoDBAsync dynamoDB) {
8892
this(dynamoDB, DEFAULT_TABLE_NAME);
@@ -98,14 +102,22 @@ public DynamoDbMetaDataStore(AmazonDynamoDBAsync dynamoDB, String tableName) {
98102

99103
}
100104

101-
public void setReadCapacity(Long readCapacity) {
105+
public void setReadCapacity(long readCapacity) {
102106
this.readCapacity = readCapacity;
103107
}
104108

105-
public void setWriteCapacity(Long writeCapacity) {
109+
public void setWriteCapacity(long writeCapacity) {
106110
this.writeCapacity = writeCapacity;
107111
}
108112

113+
public void setCreateTableRetries(int createTableRetries) {
114+
this.createTableRetries = createTableRetries;
115+
}
116+
117+
public void setCreateTableDelay(int createTableDelay) {
118+
this.createTableDelay = createTableDelay;
119+
}
120+
109121
@Override
110122
public void afterPropertiesSet() throws Exception {
111123
try {
@@ -147,8 +159,9 @@ public void onSuccess(CreateTableRequest request, CreateTableResult createTableR
147159
new WaiterParameters<>(
148160
new DescribeTableRequest(DynamoDbMetaDataStore.this.table.getTableName()))
149161
.withPollingStrategy(
150-
new PollingStrategy(new MaxAttemptsRetryStrategy(25),
151-
new FixedDelayStrategy(1)));
162+
new PollingStrategy(
163+
new MaxAttemptsRetryStrategy(DynamoDbMetaDataStore.this.createTableRetries),
164+
new FixedDelayStrategy(DynamoDbMetaDataStore.this.createTableDelay)));
152165

153166
waiter.runAsync(waiterParameters, new WaiterHandler<DescribeTableRequest>() {
154167

@@ -173,10 +186,12 @@ public void onWaitFailure(Exception e) {
173186

174187
private void awaitForActive() {
175188
try {
176-
this.createTableLatch.await(10, TimeUnit.SECONDS);
189+
this.createTableLatch.await(this.createTableRetries * this.createTableDelay, TimeUnit.SECONDS);
177190
}
178191
catch (InterruptedException e) {
179-
192+
Thread.currentThread().interrupt();
193+
throw new IllegalStateException("The DynamoDb table " + this.table.getTableName() +
194+
" has not been created during " + this.createTableRetries * this.createTableDelay + " seconds");
180195
}
181196
}
182197

0 commit comments

Comments
 (0)