This repository was archived by the owner on Apr 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathTransactionRetryHelper.java
More file actions
107 lines (97 loc) · 3.9 KB
/
TransactionRetryHelper.java
File metadata and controls
107 lines (97 loc) · 3.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.cloud.spanner;
import com.google.api.core.ApiClock;
import com.google.api.core.NanoClock;
import com.google.api.gax.retrying.ResultRetryAlgorithm;
import com.google.api.gax.retrying.RetrySettings;
import com.google.api.gax.retrying.TimedAttemptSettings;
import com.google.cloud.RetryHelper;
import com.google.cloud.RetryHelper.RetryHelperException;
import com.google.cloud.spanner.ErrorHandler.DefaultErrorHandler;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Throwables;
import io.grpc.Context;
import java.time.Duration;
import java.util.concurrent.Callable;
import java.util.concurrent.CancellationException;
/**
* Util class for retrying aborted transactions. This class is a wrapper around {@link RetryHelper}
* that uses specific settings to only retry on aborted transactions, without a timeout and without
* a cap on the number of retries.
*/
class TransactionRetryHelper {
private final RetrySettings retrySettings;
TransactionRetryHelper(RetrySettings retrySettings) {
this.retrySettings = retrySettings;
}
/** Executes the {@link Callable} and retries if it fails with an {@link AbortedException}. */
<T> T runTxWithRetriesOnAborted(Callable<T> callable) {
return runTxWithRetriesOnAborted(callable, DefaultErrorHandler.INSTANCE);
}
<T> T runTxWithRetriesOnAborted(Callable<T> callable, ErrorHandler errorHandler) {
return runTxWithRetriesOnAborted(
callable, errorHandler, this.retrySettings, NanoClock.getDefaultClock());
}
/**
* Executes the {@link Callable} and retries if it fails with an {@link AbortedException} using
* the specific {@link RetrySettings}.
*/
@VisibleForTesting
<T> T runTxWithRetriesOnAborted(
Callable<T> callable, RetrySettings retrySettings, ApiClock clock) {
return runTxWithRetriesOnAborted(callable, DefaultErrorHandler.INSTANCE, retrySettings, clock);
}
@VisibleForTesting
<T> T runTxWithRetriesOnAborted(
Callable<T> callable,
ErrorHandler errorHandler,
RetrySettings retrySettings,
ApiClock clock) {
try {
return RetryHelper.runWithRetries(callable, retrySettings, new TxRetryAlgorithm<>(), clock);
} catch (RetryHelperException e) {
if (e.getCause() != null) {
Throwables.throwIfUnchecked(errorHandler.translateException(e.getCause()));
}
throw e;
}
}
private static class TxRetryAlgorithm<T> implements ResultRetryAlgorithm<T> {
@Override
public TimedAttemptSettings createNextAttempt(
Throwable prevThrowable, T prevResponse, TimedAttemptSettings prevSettings) {
if (prevThrowable != null) {
long retryDelay = SpannerException.extractRetryDelay(prevThrowable);
if (retryDelay > -1L) {
return prevSettings.toBuilder()
.setRandomizedRetryDelayDuration(Duration.ofMillis(retryDelay))
.build();
}
}
return null;
}
@Override
public boolean shouldRetry(Throwable prevThrowable, T prevResponse)
throws CancellationException {
if (Context.current().isCancelled()) {
throw SpannerExceptionFactory.newSpannerExceptionForCancellation(Context.current(), null);
}
return prevThrowable instanceof AbortedException
|| prevThrowable instanceof com.google.api.gax.rpc.AbortedException;
}
}
}