|
22 | 22 | import com.google.api.gax.retrying.TimedAttemptSettings;
|
23 | 23 | import com.google.cloud.RetryHelper;
|
24 | 24 | import com.google.cloud.RetryHelper.RetryHelperException;
|
| 25 | +import com.google.cloud.spanner.v1.stub.SpannerStub; |
| 26 | +import com.google.cloud.spanner.v1.stub.SpannerStubSettings; |
25 | 27 | import com.google.common.base.Throwables;
|
| 28 | +import com.google.spanner.v1.RollbackRequest; |
26 | 29 | import io.grpc.Context;
|
27 | 30 | import java.util.concurrent.Callable;
|
28 | 31 | import java.util.concurrent.CancellationException;
|
|
34 | 37 | * a cap on the number of retries.
|
35 | 38 | */
|
36 | 39 | class SpannerRetryHelper {
|
| 40 | + |
| 41 | + /** |
| 42 | + * Use the same {@link RetrySettings} for retrying an aborted transaction as for retrying a {@link |
| 43 | + * RollbackRequest}. The {@link RollbackRequest} automatically uses the default retry settings |
| 44 | + * defined for the {@link SpannerStub}. By referencing these settings, the retry settings for |
| 45 | + * retrying aborted transactions will also automatically be updated if the default retry settings |
| 46 | + * are updated. |
| 47 | + * |
| 48 | + * <p>These default {@link RetrySettings} are only used if no retry information is returned by the |
| 49 | + * {@link AbortedException}. |
| 50 | + */ |
37 | 51 | private static final RetrySettings txRetrySettings =
|
38 |
| - RetrySettings.newBuilder() |
39 |
| - .setInitialRetryDelay(Duration.ofMillis(1000L)) |
40 |
| - .setMaxRetryDelay(Duration.ofMillis(32000L)) |
41 |
| - .setTotalTimeout(Duration.ofMillis(Integer.MAX_VALUE)) |
42 |
| - .build(); |
| 52 | + SpannerStubSettings.newBuilder().rollbackSettings().getRetrySettings(); |
43 | 53 |
|
44 | 54 | /** Executes the {@link Callable} and retries if it fails with an {@link AbortedException}. */
|
45 | 55 | static <T> T runTxWithRetriesOnAborted(Callable<T> callable) {
|
|
0 commit comments