Skip to content

Commit 6709552

Browse files
authored
fix: use default retry settings for aborted tx (#48)
1 parent 63b33e9 commit 6709552

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerRetryHelper.java

+15-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
import com.google.api.gax.retrying.TimedAttemptSettings;
2323
import com.google.cloud.RetryHelper;
2424
import com.google.cloud.RetryHelper.RetryHelperException;
25+
import com.google.cloud.spanner.v1.stub.SpannerStub;
26+
import com.google.cloud.spanner.v1.stub.SpannerStubSettings;
2527
import com.google.common.base.Throwables;
28+
import com.google.spanner.v1.RollbackRequest;
2629
import io.grpc.Context;
2730
import java.util.concurrent.Callable;
2831
import java.util.concurrent.CancellationException;
@@ -34,12 +37,19 @@
3437
* a cap on the number of retries.
3538
*/
3639
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+
*/
3751
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();
4353

4454
/** Executes the {@link Callable} and retries if it fails with an {@link AbortedException}. */
4555
static <T> T runTxWithRetriesOnAborted(Callable<T> callable) {

0 commit comments

Comments
 (0)