HBASE-16172 Unify the retry logic in ScannerCallableWithReplicas and RpcRetryingCallerWithReadReplicas
This commit is contained in:
parent
cf0f4f72d9
commit
eb43f0a5d0
|
@ -440,7 +440,7 @@ public class HTable implements Table {
|
|||
connConfiguration.getRetriesNumber(),
|
||||
operationTimeout,
|
||||
connConfiguration.getPrimaryCallTimeoutMicroSecond());
|
||||
return callable.call();
|
||||
return callable.call(operationTimeout);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@ import java.util.concurrent.ExecutionException;
|
|||
import java.util.concurrent.ExecutorService;
|
||||
import java.util.concurrent.Future;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.concurrent.TimeoutException;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
@ -188,7 +189,7 @@ public class RpcRetryingCallerWithReadReplicas {
|
|||
* Globally, the number of retries, timeout and so on still applies, but it's per replica,
|
||||
* not global. We continue until all retries are done, or all timeouts are exceeded.
|
||||
*/
|
||||
public synchronized Result call()
|
||||
public Result call(int operationTimeout)
|
||||
throws DoNotRetryIOException, InterruptedIOException, RetriesExhaustedException {
|
||||
boolean isTargetReplicaSpecified = (get.getReplicaId() >= 0);
|
||||
|
||||
|
@ -221,10 +222,17 @@ public class RpcRetryingCallerWithReadReplicas {
|
|||
|
||||
try {
|
||||
try {
|
||||
Future<Result> f = cs.take();
|
||||
return f.get();
|
||||
long start = EnvironmentEdgeManager.currentTime();
|
||||
Future<Result> f = cs.poll(operationTimeout, TimeUnit.MILLISECONDS);
|
||||
long duration = EnvironmentEdgeManager.currentTime() - start;
|
||||
if (f == null) {
|
||||
throw new RetriesExhaustedException("timed out after " + duration + " ms");
|
||||
}
|
||||
return f.get(operationTimeout - duration, TimeUnit.MILLISECONDS);
|
||||
} catch (ExecutionException e) {
|
||||
throwEnrichedException(e, retries);
|
||||
} catch (TimeoutException te) {
|
||||
throw new RetriesExhaustedException("timed out after " + operationTimeout + " ms");
|
||||
}
|
||||
} catch (CancellationException e) {
|
||||
throw new InterruptedIOException();
|
||||
|
|
|
@ -41,6 +41,7 @@ import org.apache.hadoop.hbase.RegionLocations;
|
|||
import org.apache.hadoop.hbase.TableName;
|
||||
import org.apache.hadoop.hbase.classification.InterfaceAudience;
|
||||
import org.apache.hadoop.hbase.util.Bytes;
|
||||
import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
|
||||
import org.apache.hadoop.hbase.util.Pair;
|
||||
|
||||
import com.google.common.annotations.VisibleForTesting;
|
||||
|
@ -195,9 +196,11 @@ class ScannerCallableWithReplicas implements RetryingCallable<Result[]> {
|
|||
addCallsForOtherReplicas(cs, rl, 0, rl.size() - 1);
|
||||
|
||||
try {
|
||||
long start = EnvironmentEdgeManager.currentTime();
|
||||
Future<Pair<Result[], ScannerCallable>> f = cs.poll(timeout, TimeUnit.MILLISECONDS);
|
||||
long duration = EnvironmentEdgeManager.currentTime() - start;
|
||||
if (f != null) {
|
||||
Pair<Result[], ScannerCallable> r = f.get(timeout, TimeUnit.MILLISECONDS);
|
||||
Pair<Result[], ScannerCallable> r = f.get(timeout - duration, TimeUnit.MILLISECONDS);
|
||||
if (r != null && r.getSecond() != null) {
|
||||
updateCurrentlyServingReplica(r.getSecond(), r.getFirst(), done, pool);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue