blob: 83516178f1bda9499cb4837c16a96213039e47f1 [file] [log] [blame]
/*
* Copyright 2016, Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
*
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package io.grpc.util;
import com.google.common.base.Supplier;
import io.grpc.Attributes;
import io.grpc.EquivalentAddressGroup;
import io.grpc.ExperimentalApi;
import io.grpc.LoadBalancer;
import io.grpc.NameResolver;
import io.grpc.ResolvedServerInfoGroup;
import io.grpc.Status;
import io.grpc.TransportManager;
import io.grpc.TransportManager.InterimTransport;
import io.grpc.internal.RoundRobinServerList;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.concurrent.GuardedBy;
/**
* A {@link LoadBalancer} that provides round-robin load balancing mechanism over the
* addresses from the {@link NameResolver}. The sub-lists received from the name resolver
* are considered to be an {@link EquivalentAddressGroup} and each of these sub-lists is
* what is then balanced across.
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/1771")
public final class RoundRobinLoadBalancerFactory extends LoadBalancer.Factory {
private static final RoundRobinLoadBalancerFactory instance = new RoundRobinLoadBalancerFactory();
private RoundRobinLoadBalancerFactory() {
}
public static RoundRobinLoadBalancerFactory getInstance() {
return instance;
}
@Override
public <T> LoadBalancer<T> newLoadBalancer(String serviceName, TransportManager<T> tm) {
return new RoundRobinLoadBalancer<T>(tm);
}
private static class RoundRobinLoadBalancer<T> extends LoadBalancer<T> {
private static final Status SHUTDOWN_STATUS =
Status.UNAVAILABLE.augmentDescription("RoundRobinLoadBalancer has shut down");
private final Object lock = new Object();
@GuardedBy("lock")
private RoundRobinServerList<T> addresses;
@GuardedBy("lock")
private InterimTransport<T> interimTransport;
@GuardedBy("lock")
private Status nameResolutionError;
@GuardedBy("lock")
private boolean closed;
private final TransportManager<T> tm;
private RoundRobinLoadBalancer(TransportManager<T> tm) {
this.tm = tm;
}
@Override
public T pickTransport(Attributes affinity) {
final RoundRobinServerList<T> addressesCopy;
synchronized (lock) {
if (closed) {
return tm.createFailingTransport(SHUTDOWN_STATUS);
}
if (addresses == null) {
if (nameResolutionError != null) {
return tm.createFailingTransport(nameResolutionError);
}
if (interimTransport == null) {
interimTransport = tm.createInterimTransport();
}
return interimTransport.transport();
}
addressesCopy = addresses;
}
return addressesCopy.getTransportForNextServer();
}
@Override
public void handleResolvedAddresses(List<ResolvedServerInfoGroup> updatedServers,
Attributes attributes) {
final InterimTransport<T> savedInterimTransport;
final RoundRobinServerList<T> addressesCopy;
synchronized (lock) {
if (closed) {
return;
}
addresses = new RoundRobinServerList.Builder<T>(tm).addAll(
resolvedServerInfoGroupToEquivalentAddressGroup(updatedServers)).build();
addressesCopy = addresses;
nameResolutionError = null;
savedInterimTransport = interimTransport;
interimTransport = null;
}
if (savedInterimTransport != null) {
savedInterimTransport.closeWithRealTransports(new Supplier<T>() {
@Override public T get() {
return addressesCopy.getTransportForNextServer();
}
});
}
}
@Override
public void handleNameResolutionError(Status error) {
InterimTransport<T> savedInterimTransport;
synchronized (lock) {
if (closed) {
return;
}
error = error.augmentDescription("Name resolution failed");
savedInterimTransport = interimTransport;
interimTransport = null;
nameResolutionError = error;
}
if (savedInterimTransport != null) {
savedInterimTransport.closeWithError(error);
}
}
@Override
public void shutdown() {
InterimTransport<T> savedInterimTransport;
synchronized (lock) {
if (closed) {
return;
}
closed = true;
savedInterimTransport = interimTransport;
interimTransport = null;
}
if (savedInterimTransport != null) {
savedInterimTransport.closeWithError(SHUTDOWN_STATUS);
}
}
private static List<EquivalentAddressGroup> resolvedServerInfoGroupToEquivalentAddressGroup(
List<ResolvedServerInfoGroup> groupList) {
List<EquivalentAddressGroup> addrs = new ArrayList<EquivalentAddressGroup>(groupList.size());
for (ResolvedServerInfoGroup group : groupList) {
addrs.add(group.toEquivalentAddressGroup());
}
return addrs;
}
}
}