|
29 | 29 | import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider;
|
30 | 30 | import com.google.api.gax.longrunning.OperationFuture;
|
31 | 31 | import com.google.api.gax.retrying.ResultRetryAlgorithm;
|
| 32 | +import com.google.api.gax.retrying.RetrySettings; |
32 | 33 | import com.google.api.gax.retrying.TimedAttemptSettings;
|
33 | 34 | import com.google.api.gax.rpc.AlreadyExistsException;
|
34 | 35 | import com.google.api.gax.rpc.ApiClientHeaderProvider;
|
@@ -217,6 +218,7 @@ private void awaitTermination() throws InterruptedException {
|
217 | 218 | private boolean rpcIsClosed;
|
218 | 219 | private final SpannerStub spannerStub;
|
219 | 220 | private final SpannerStub partitionedDmlStub;
|
| 221 | + private final RetrySettings partitionedDmlRetrySettings; |
220 | 222 | private final InstanceAdminStub instanceAdminStub;
|
221 | 223 | private final DatabaseAdminStubSettings databaseAdminStubSettings;
|
222 | 224 | private final DatabaseAdminStub databaseAdminStub;
|
@@ -300,7 +302,7 @@ public GapicSpannerRpc(final SpannerOptions options) {
|
300 | 302 |
|
301 | 303 | // Set a keepalive time of 120 seconds to help long running
|
302 | 304 | // commit GRPC calls succeed
|
303 |
| - .setKeepAliveTime(Duration.ofSeconds(GRPC_KEEPALIVE_SECONDS)) |
| 305 | + .setKeepAliveTime(Duration.ofSeconds(GRPC_KEEPALIVE_SECONDS * 1000)) |
304 | 306 |
|
305 | 307 | // Then check if SpannerOptions provides an InterceptorProvider. Create a default
|
306 | 308 | // SpannerInterceptorProvider if none is provided
|
@@ -336,21 +338,24 @@ public GapicSpannerRpc(final SpannerOptions options) {
|
336 | 338 | .setCredentialsProvider(credentialsProvider)
|
337 | 339 | .setStreamWatchdogProvider(watchdogProvider)
|
338 | 340 | .build());
|
| 341 | + partitionedDmlRetrySettings = |
| 342 | + options |
| 343 | + .getSpannerStubSettings() |
| 344 | + .executeSqlSettings() |
| 345 | + .getRetrySettings() |
| 346 | + .toBuilder() |
| 347 | + .setInitialRpcTimeout(options.getPartitionedDmlTimeout()) |
| 348 | + .setMaxRpcTimeout(options.getPartitionedDmlTimeout()) |
| 349 | + .setTotalTimeout(options.getPartitionedDmlTimeout()) |
| 350 | + .setRpcTimeoutMultiplier(1.0) |
| 351 | + .build(); |
339 | 352 | SpannerStubSettings.Builder pdmlSettings = options.getSpannerStubSettings().toBuilder();
|
340 | 353 | pdmlSettings
|
341 | 354 | .setTransportChannelProvider(channelProvider)
|
342 | 355 | .setCredentialsProvider(credentialsProvider)
|
343 | 356 | .setStreamWatchdogProvider(watchdogProvider)
|
344 | 357 | .executeSqlSettings()
|
345 |
| - .setRetrySettings( |
346 |
| - options |
347 |
| - .getSpannerStubSettings() |
348 |
| - .executeSqlSettings() |
349 |
| - .getRetrySettings() |
350 |
| - .toBuilder() |
351 |
| - .setInitialRpcTimeout(options.getPartitionedDmlTimeout()) |
352 |
| - .setMaxRpcTimeout(options.getPartitionedDmlTimeout()) |
353 |
| - .build()); |
| 358 | + .setRetrySettings(partitionedDmlRetrySettings); |
354 | 359 | this.partitionedDmlStub = GrpcSpannerStub.create(pdmlSettings.build());
|
355 | 360 |
|
356 | 361 | this.instanceAdminStub =
|
@@ -1060,6 +1065,11 @@ public ResultSet executePartitionedDml(
|
1060 | 1065 | return get(partitionedDmlStub.executeSqlCallable().futureCall(request, context));
|
1061 | 1066 | }
|
1062 | 1067 |
|
| 1068 | + @Override |
| 1069 | + public RetrySettings getPartitionedDmlRetrySettings() { |
| 1070 | + return partitionedDmlRetrySettings; |
| 1071 | + } |
| 1072 | + |
1063 | 1073 | @Override
|
1064 | 1074 | public StreamingCall executeQuery(
|
1065 | 1075 | ExecuteSqlRequest request, ResultStreamConsumer consumer, @Nullable Map<Option, ?> options) {
|
|
0 commit comments