@@ -80,9 +80,13 @@ public class DynamoDbMetaDataStore implements ConcurrentMetadataStore, Initializ
80
80
81
81
private final CountDownLatch createTableLatch = new CountDownLatch (1 );
82
82
83
- private Long readCapacity = 10000L ;
83
+ private int createTableRetries = 25 ;
84
84
85
- private Long writeCapacity = 10000L ;
85
+ private int createTableDelay = 1 ;
86
+
87
+ private long readCapacity = 1L ;
88
+
89
+ private long writeCapacity = 1L ;
86
90
87
91
public DynamoDbMetaDataStore (AmazonDynamoDBAsync dynamoDB ) {
88
92
this (dynamoDB , DEFAULT_TABLE_NAME );
@@ -98,14 +102,22 @@ public DynamoDbMetaDataStore(AmazonDynamoDBAsync dynamoDB, String tableName) {
98
102
99
103
}
100
104
101
- public void setReadCapacity (Long readCapacity ) {
105
+ public void setReadCapacity (long readCapacity ) {
102
106
this .readCapacity = readCapacity ;
103
107
}
104
108
105
- public void setWriteCapacity (Long writeCapacity ) {
109
+ public void setWriteCapacity (long writeCapacity ) {
106
110
this .writeCapacity = writeCapacity ;
107
111
}
108
112
113
+ public void setCreateTableRetries (int createTableRetries ) {
114
+ this .createTableRetries = createTableRetries ;
115
+ }
116
+
117
+ public void setCreateTableDelay (int createTableDelay ) {
118
+ this .createTableDelay = createTableDelay ;
119
+ }
120
+
109
121
@ Override
110
122
public void afterPropertiesSet () throws Exception {
111
123
try {
@@ -147,8 +159,9 @@ public void onSuccess(CreateTableRequest request, CreateTableResult createTableR
147
159
new WaiterParameters <>(
148
160
new DescribeTableRequest (DynamoDbMetaDataStore .this .table .getTableName ()))
149
161
.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 )));
152
165
153
166
waiter .runAsync (waiterParameters , new WaiterHandler <DescribeTableRequest >() {
154
167
@@ -173,10 +186,12 @@ public void onWaitFailure(Exception e) {
173
186
174
187
private void awaitForActive () {
175
188
try {
176
- this .createTableLatch .await (10 , TimeUnit .SECONDS );
189
+ this .createTableLatch .await (this . createTableRetries * this . createTableDelay , TimeUnit .SECONDS );
177
190
}
178
191
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" );
180
195
}
181
196
}
182
197
0 commit comments