com.yahoo.vespa.jaxrs.client.RetryingJaxRsStrategy Maven / Gradle / Ivy
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.jaxrs.client;
import com.yahoo.vespa.applicationmodel.HostName;
import javax.ws.rs.ProcessingException;
import javax.ws.rs.ServiceUnavailableException;
import javax.ws.rs.core.UriBuilder;
import java.io.IOException;
import java.net.URI;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Set;
import java.util.function.Function;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* A {@link JaxRsStrategy} that will retry on failures, looping twice over all available server hosts before giving up.
*
* @author bakksjo
*/
public class RetryingJaxRsStrategy implements JaxRsStrategy {
private static final Logger logger = Logger.getLogger(RetryingJaxRsStrategy.class.getName());
private final List hostNames;
private final int port;
private final JaxRsClientFactory jaxRsClientFactory;
private final Class apiClass;
private final String pathPrefix;
private final String scheme;
private int maxIterations = 2;
public RetryingJaxRsStrategy(
final Set hostNames,
final int port,
final JaxRsClientFactory jaxRsClientFactory,
final Class apiClass,
final String pathPrefix,
String scheme) {
if (hostNames.isEmpty()) {
throw new IllegalArgumentException("hostNames argument must not be empty");
}
Objects.requireNonNull(jaxRsClientFactory, "jaxRsClientFactory argument may not be null");
Objects.requireNonNull(apiClass, "apiClass argument may not be null");
Objects.requireNonNull(pathPrefix, "pathPrefix argument may not be null");
this.hostNames = new ArrayList<>(hostNames);
Collections.shuffle(this.hostNames);
this.port = port;
this.jaxRsClientFactory = jaxRsClientFactory;
this.apiClass = apiClass;
this.pathPrefix = pathPrefix;
this.scheme = scheme;
}
/**
* The the max number of times the hostnames should be iterated over, before giving up.
*
* By default, maxIterations is 2.
*/
public RetryingJaxRsStrategy setMaxIterations(int maxIterations) {
this.maxIterations = maxIterations;
return this;
}
@Override
public R apply(final Function function) throws IOException {
return apply(function, new LegacyJaxRsTimeouts());
}
@Override
public R apply(final Function function, JaxRsTimeouts timeouts) throws IOException {
RuntimeException sampleException = null;
for (int i = 0; i < maxIterations; ++i) {
for (final HostName hostName : hostNames) {
URI uri = UriBuilder.fromPath(pathPrefix).port(port).scheme(scheme).host(hostName.s()).build();
JaxRsClientFactory.Params params = new JaxRsClientFactory.Params<>(apiClass, uri);
params.setConnectTimeout(timeouts.getConnectTimeoutOrThrow());
params.setReadTimeout(timeouts.getReadTimeoutOrThrow());
final T jaxRsClient = jaxRsClientFactory.createClient(params);
try {
return function.apply(jaxRsClient);
} catch (ProcessingException | ServiceUnavailableException e) {
// E.g. java.net.SocketTimeoutException thrown on read timeout is wrapped as a ProcessingException,
// while ServiceUnavailableException is a WebApplicationException
String message = "Failed REST API call to " + uri + " (in retry loop):";
sampleException = new RuntimeException(message, e);
logger.log(Level.INFO, message + e.getMessage());
}
}
}
final String message = String.format(
"Giving up invoking REST API after %d tries against hosts %s.%s",
maxIterations,
hostNames,
sampleException == null ? "" : ", sample error: " + sampleException.getMessage());
assert sampleException != null;
throw new IOException(message, sampleException);
}
}