mirror of https://github.com/grpc/grpc-java.git
internal:Happy eyeballs (#10731)
* implement happy eyeballs --------- Co-authored-by: tonyjongyoonan <tonyjan@google.com>
This commit is contained in:
parent
8e1cc943b0
commit
7f4c16e068
|
|
@ -955,6 +955,8 @@ public abstract class LoadBalancer {
|
||||||
*
|
*
|
||||||
* <p>It must be called from {@link #getSynchronizationContext the Synchronization Context}
|
* <p>It must be called from {@link #getSynchronizationContext the Synchronization Context}
|
||||||
*
|
*
|
||||||
|
* @return Must return a valid Subchannel object, may not return null.
|
||||||
|
*
|
||||||
* @since 1.22.0
|
* @since 1.22.0
|
||||||
*/
|
*/
|
||||||
public Subchannel createSubchannel(CreateSubchannelArgs args) {
|
public Subchannel createSubchannel(CreateSubchannelArgs args) {
|
||||||
|
|
@ -1287,7 +1289,8 @@ public abstract class LoadBalancer {
|
||||||
*/
|
*/
|
||||||
public final EquivalentAddressGroup getAddresses() {
|
public final EquivalentAddressGroup getAddresses() {
|
||||||
List<EquivalentAddressGroup> groups = getAllAddresses();
|
List<EquivalentAddressGroup> groups = getAllAddresses();
|
||||||
Preconditions.checkState(groups.size() == 1, "%s does not have exactly one group", groups);
|
Preconditions.checkState(groups != null && groups.size() == 1,
|
||||||
|
"%s does not have exactly one group", groups);
|
||||||
return groups.get(0);
|
return groups.get(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@ import com.google.common.base.Objects;
|
||||||
import com.google.common.base.Preconditions;
|
import com.google.common.base.Preconditions;
|
||||||
import com.google.common.base.Splitter;
|
import com.google.common.base.Splitter;
|
||||||
import com.google.common.base.Stopwatch;
|
import com.google.common.base.Stopwatch;
|
||||||
|
import com.google.common.base.Strings;
|
||||||
import com.google.common.base.Supplier;
|
import com.google.common.base.Supplier;
|
||||||
import com.google.common.util.concurrent.ListenableFuture;
|
import com.google.common.util.concurrent.ListenableFuture;
|
||||||
import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||||
|
|
@ -948,5 +949,19 @@ public final class GrpcUtil {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static boolean getFlag(String envVarName, boolean enableByDefault) {
|
||||||
|
String envVar = System.getenv(envVarName);
|
||||||
|
if (envVar == null) {
|
||||||
|
envVar = System.getProperty(envVarName);
|
||||||
|
}
|
||||||
|
if (enableByDefault) {
|
||||||
|
return Strings.isNullOrEmpty(envVar) || Boolean.parseBoolean(envVar);
|
||||||
|
} else {
|
||||||
|
return !Strings.isNullOrEmpty(envVar) && Boolean.parseBoolean(envVar);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
private GrpcUtil() {}
|
private GrpcUtil() {}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ import static io.grpc.ConnectivityState.TRANSIENT_FAILURE;
|
||||||
|
|
||||||
import com.google.common.annotations.VisibleForTesting;
|
import com.google.common.annotations.VisibleForTesting;
|
||||||
import com.google.common.base.MoreObjects;
|
import com.google.common.base.MoreObjects;
|
||||||
|
import com.google.common.collect.ImmutableList;
|
||||||
import com.google.common.collect.Lists;
|
import com.google.common.collect.Lists;
|
||||||
import io.grpc.Attributes;
|
import io.grpc.Attributes;
|
||||||
import io.grpc.ConnectivityState;
|
import io.grpc.ConnectivityState;
|
||||||
|
|
@ -33,6 +34,7 @@ import io.grpc.EquivalentAddressGroup;
|
||||||
import io.grpc.ExperimentalApi;
|
import io.grpc.ExperimentalApi;
|
||||||
import io.grpc.LoadBalancer;
|
import io.grpc.LoadBalancer;
|
||||||
import io.grpc.Status;
|
import io.grpc.Status;
|
||||||
|
import io.grpc.SynchronizationContext.ScheduledHandle;
|
||||||
import java.net.SocketAddress;
|
import java.net.SocketAddress;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
|
|
@ -42,6 +44,7 @@ import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
@ -55,11 +58,21 @@ import javax.annotation.Nullable;
|
||||||
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/10383")
|
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/10383")
|
||||||
final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
private static final Logger log = Logger.getLogger(PickFirstLeafLoadBalancer.class.getName());
|
private static final Logger log = Logger.getLogger(PickFirstLeafLoadBalancer.class.getName());
|
||||||
|
@VisibleForTesting
|
||||||
|
static final int CONNECTION_DELAY_INTERVAL_MS = 250;
|
||||||
|
public static final String GRPC_EXPERIMENTAL_XDS_DUALSTACK_ENDPOINTS =
|
||||||
|
"GRPC_EXPERIMENTAL_XDS_DUALSTACK_ENDPOINTS";
|
||||||
private final Helper helper;
|
private final Helper helper;
|
||||||
private final Map<SocketAddress, SubchannelData> subchannels = new HashMap<>();
|
private final Map<SocketAddress, SubchannelData> subchannels = new HashMap<>();
|
||||||
private Index addressIndex;
|
private Index addressIndex;
|
||||||
|
private int numTf = 0;
|
||||||
|
private boolean firstPass = true;
|
||||||
|
@Nullable
|
||||||
|
private ScheduledHandle scheduleConnectionTask;
|
||||||
private ConnectivityState rawConnectivityState = IDLE;
|
private ConnectivityState rawConnectivityState = IDLE;
|
||||||
private ConnectivityState concludedState = IDLE;
|
private ConnectivityState concludedState = IDLE;
|
||||||
|
private final boolean enableHappyEyeballs =
|
||||||
|
GrpcUtil.getFlag(GRPC_EXPERIMENTAL_XDS_DUALSTACK_ENDPOINTS, false);
|
||||||
|
|
||||||
PickFirstLeafLoadBalancer(Helper helper) {
|
PickFirstLeafLoadBalancer(Helper helper) {
|
||||||
this.helper = checkNotNull(helper, "helper");
|
this.helper = checkNotNull(helper, "helper");
|
||||||
|
|
@ -67,7 +80,13 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Status acceptResolvedAddresses(ResolvedAddresses resolvedAddresses) {
|
public Status acceptResolvedAddresses(ResolvedAddresses resolvedAddresses) {
|
||||||
|
if (rawConnectivityState == SHUTDOWN) {
|
||||||
|
return Status.FAILED_PRECONDITION.withDescription("Already shut down");
|
||||||
|
}
|
||||||
|
|
||||||
List<EquivalentAddressGroup> servers = resolvedAddresses.getAddresses();
|
List<EquivalentAddressGroup> servers = resolvedAddresses.getAddresses();
|
||||||
|
|
||||||
|
// Validate the address list
|
||||||
if (servers.isEmpty()) {
|
if (servers.isEmpty()) {
|
||||||
Status unavailableStatus = Status.UNAVAILABLE.withDescription(
|
Status unavailableStatus = Status.UNAVAILABLE.withDescription(
|
||||||
"NameResolver returned no usable address. addrs=" + resolvedAddresses.getAddresses()
|
"NameResolver returned no usable address. addrs=" + resolvedAddresses.getAddresses()
|
||||||
|
|
@ -85,6 +104,10 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
return unavailableStatus;
|
return unavailableStatus;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Since we have a new set of addresses, we are again at first pass
|
||||||
|
firstPass = true;
|
||||||
|
|
||||||
// We can optionally be configured to shuffle the address list. This can help better distribute
|
// We can optionally be configured to shuffle the address list. This can help better distribute
|
||||||
// the load.
|
// the load.
|
||||||
if (resolvedAddresses.getLoadBalancingPolicyConfig()
|
if (resolvedAddresses.getLoadBalancingPolicyConfig()
|
||||||
|
|
@ -92,47 +115,45 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
PickFirstLeafLoadBalancerConfig config
|
PickFirstLeafLoadBalancerConfig config
|
||||||
= (PickFirstLeafLoadBalancerConfig) resolvedAddresses.getLoadBalancingPolicyConfig();
|
= (PickFirstLeafLoadBalancerConfig) resolvedAddresses.getLoadBalancingPolicyConfig();
|
||||||
if (config.shuffleAddressList != null && config.shuffleAddressList) {
|
if (config.shuffleAddressList != null && config.shuffleAddressList) {
|
||||||
servers = new ArrayList<EquivalentAddressGroup>(servers);
|
servers = new ArrayList<>(servers);
|
||||||
Collections.shuffle(servers,
|
Collections.shuffle(servers,
|
||||||
config.randomSeed != null ? new Random(config.randomSeed) : new Random());
|
config.randomSeed != null ? new Random(config.randomSeed) : new Random());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
final List<EquivalentAddressGroup> newImmutableAddressGroups =
|
// Make sure we're storing our own list rather than what was passed in
|
||||||
Collections.unmodifiableList(new ArrayList<>(servers));
|
final ImmutableList<EquivalentAddressGroup> newImmutableAddressGroups =
|
||||||
|
ImmutableList.<EquivalentAddressGroup>builder().addAll(servers).build();
|
||||||
|
|
||||||
if (addressIndex == null) {
|
if (addressIndex == null) {
|
||||||
addressIndex = new Index(newImmutableAddressGroups);
|
addressIndex = new Index(newImmutableAddressGroups);
|
||||||
} else if (rawConnectivityState == READY) {
|
} else if (rawConnectivityState == READY) {
|
||||||
// If a ready subchannel exists in new address list,
|
// If the previous ready subchannel exists in new address list,
|
||||||
// keep this connection and don't create new subchannels
|
// keep this connection and don't create new subchannels
|
||||||
SocketAddress previousAddress = addressIndex.getCurrentAddress();
|
SocketAddress previousAddress = addressIndex.getCurrentAddress();
|
||||||
addressIndex.updateGroups(newImmutableAddressGroups);
|
addressIndex.updateGroups(newImmutableAddressGroups);
|
||||||
if (addressIndex.seekTo(previousAddress)) {
|
if (addressIndex.seekTo(previousAddress)) {
|
||||||
return Status.OK;
|
return Status.OK;
|
||||||
|
} else {
|
||||||
|
addressIndex.reset(); // Previous ready subchannel not in the new list of addresses
|
||||||
}
|
}
|
||||||
addressIndex.reset();
|
|
||||||
} else {
|
} else {
|
||||||
addressIndex.updateGroups(newImmutableAddressGroups);
|
addressIndex.updateGroups(newImmutableAddressGroups);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create subchannels for all new addresses, preserving existing connections
|
// remove old subchannels that were not in new address list
|
||||||
Set<SocketAddress> oldAddrs = new HashSet<>(subchannels.keySet());
|
Set<SocketAddress> oldAddrs = new HashSet<>(subchannels.keySet());
|
||||||
|
|
||||||
|
// Flatten the new EAGs addresses
|
||||||
Set<SocketAddress> newAddrs = new HashSet<>();
|
Set<SocketAddress> newAddrs = new HashSet<>();
|
||||||
for (EquivalentAddressGroup endpoint : newImmutableAddressGroups) {
|
for (EquivalentAddressGroup endpoint : newImmutableAddressGroups) {
|
||||||
for (SocketAddress addr : endpoint.getAddresses()) {
|
newAddrs.addAll(endpoint.getAddresses());
|
||||||
newAddrs.add(addr);
|
|
||||||
if (!subchannels.containsKey(addr)) {
|
|
||||||
createNewSubchannel(addr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// remove old subchannels that were not in new address list
|
// Shut them down and remove them
|
||||||
for (SocketAddress oldAddr : oldAddrs) {
|
for (SocketAddress oldAddr : oldAddrs) {
|
||||||
if (!newAddrs.contains(oldAddr)) {
|
if (!newAddrs.contains(oldAddr)) {
|
||||||
subchannels.get(oldAddr).getSubchannel().shutdown();
|
subchannels.remove(oldAddr).getSubchannel().shutdown();
|
||||||
subchannels.remove(oldAddr);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -141,6 +162,7 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
// start connection attempt at first address
|
// start connection attempt at first address
|
||||||
rawConnectivityState = CONNECTING;
|
rawConnectivityState = CONNECTING;
|
||||||
updateBalancingState(CONNECTING, new Picker(PickResult.withNoResult()));
|
updateBalancingState(CONNECTING, new Picker(PickResult.withNoResult()));
|
||||||
|
cancelScheduleTask();
|
||||||
requestConnection();
|
requestConnection();
|
||||||
|
|
||||||
} else if (rawConnectivityState == IDLE) {
|
} else if (rawConnectivityState == IDLE) {
|
||||||
|
|
@ -150,6 +172,7 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
|
|
||||||
} else if (rawConnectivityState == TRANSIENT_FAILURE) {
|
} else if (rawConnectivityState == TRANSIENT_FAILURE) {
|
||||||
// start connection attempt at first address
|
// start connection attempt at first address
|
||||||
|
cancelScheduleTask();
|
||||||
requestConnection();
|
requestConnection();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -162,15 +185,13 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
subchannelData.getSubchannel().shutdown();
|
subchannelData.getSubchannel().shutdown();
|
||||||
}
|
}
|
||||||
subchannels.clear();
|
subchannels.clear();
|
||||||
// NB(lukaszx0) Whether we should propagate the error unconditionally is arguable. It's fine
|
|
||||||
// for time being.
|
|
||||||
updateBalancingState(TRANSIENT_FAILURE, new Picker(PickResult.withError(error)));
|
updateBalancingState(TRANSIENT_FAILURE, new Picker(PickResult.withError(error)));
|
||||||
}
|
}
|
||||||
|
|
||||||
void processSubchannelState(Subchannel subchannel, ConnectivityStateInfo stateInfo) {
|
void processSubchannelState(Subchannel subchannel, ConnectivityStateInfo stateInfo) {
|
||||||
ConnectivityState newState = stateInfo.getState();
|
ConnectivityState newState = stateInfo.getState();
|
||||||
// Shutdown channels/previously relevant subchannels can still callback with state updates.
|
// Shutdown channels/previously relevant subchannels can still callback with state updates.
|
||||||
// To prevent pickers from returning these obselete subchannels, this logic
|
// To prevent pickers from returning these obsolete subchannels, this logic
|
||||||
// is included to check if the current list of active subchannels includes this subchannel.
|
// is included to check if the current list of active subchannels includes this subchannel.
|
||||||
SubchannelData subchannelData = subchannels.get(getAddress(subchannel));
|
SubchannelData subchannelData = subchannels.get(getAddress(subchannel));
|
||||||
if (subchannelData == null || subchannelData.getSubchannel() != subchannel) {
|
if (subchannelData == null || subchannelData.getSubchannel() != subchannel) {
|
||||||
|
|
@ -179,6 +200,7 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
if (newState == SHUTDOWN) {
|
if (newState == SHUTDOWN) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (newState == IDLE) {
|
if (newState == IDLE) {
|
||||||
helper.refreshNameResolution();
|
helper.refreshNameResolution();
|
||||||
}
|
}
|
||||||
|
|
@ -211,32 +233,48 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
rawConnectivityState = IDLE;
|
rawConnectivityState = IDLE;
|
||||||
updateBalancingState(IDLE, new RequestConnectionPicker(this));
|
updateBalancingState(IDLE, new RequestConnectionPicker(this));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONNECTING:
|
case CONNECTING:
|
||||||
rawConnectivityState = CONNECTING;
|
rawConnectivityState = CONNECTING;
|
||||||
updateBalancingState(CONNECTING, new Picker(PickResult.withNoResult()));
|
updateBalancingState(CONNECTING, new Picker(PickResult.withNoResult()));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case READY:
|
case READY:
|
||||||
shutdownRemaining(subchannelData);
|
shutdownRemaining(subchannelData);
|
||||||
addressIndex.seekTo(getAddress(subchannel));
|
addressIndex.seekTo(getAddress(subchannel));
|
||||||
rawConnectivityState = READY;
|
rawConnectivityState = READY;
|
||||||
updateHealthCheckedState(subchannelData);
|
updateHealthCheckedState(subchannelData);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case TRANSIENT_FAILURE:
|
case TRANSIENT_FAILURE:
|
||||||
// If we are looking at current channel, request a connection if possible
|
// If we are looking at current channel, request a connection if possible
|
||||||
if (addressIndex.isValid()
|
if (addressIndex.isValid()
|
||||||
&& subchannels.get(addressIndex.getCurrentAddress()).getSubchannel() == subchannel) {
|
&& subchannels.get(addressIndex.getCurrentAddress()).getSubchannel() == subchannel) {
|
||||||
addressIndex.increment();
|
if (addressIndex.increment()) {
|
||||||
requestConnection();
|
cancelScheduleTask();
|
||||||
|
requestConnection(); // is recursive so might hit the end of the addresses
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// If no addresses remaining, go into TRANSIENT_FAILURE
|
if (isPassComplete()) {
|
||||||
if (!addressIndex.isValid()) {
|
rawConnectivityState = TRANSIENT_FAILURE;
|
||||||
|
updateBalancingState(TRANSIENT_FAILURE,
|
||||||
|
new Picker(PickResult.withError(stateInfo.getStatus())));
|
||||||
|
|
||||||
|
// Refresh Name Resolution, but only when all 3 conditions are met
|
||||||
|
// * We are at the end of addressIndex
|
||||||
|
// * have had status reported for all subchannels.
|
||||||
|
// * And one of the following conditions:
|
||||||
|
// * Have had enough TF reported since we completed first pass
|
||||||
|
// * Just completed the first pass
|
||||||
|
if (++numTf >= addressIndex.size() || firstPass) {
|
||||||
|
firstPass = false;
|
||||||
|
numTf = 0;
|
||||||
helper.refreshNameResolution();
|
helper.refreshNameResolution();
|
||||||
rawConnectivityState = TRANSIENT_FAILURE;
|
|
||||||
updateBalancingState(TRANSIENT_FAILURE,
|
|
||||||
new Picker(PickResult.withError(stateInfo.getStatus())));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
throw new IllegalArgumentException("Unsupported state:" + newState);
|
throw new IllegalArgumentException("Unsupported state:" + newState);
|
||||||
}
|
}
|
||||||
|
|
@ -269,9 +307,16 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void shutdown() {
|
public void shutdown() {
|
||||||
|
log.log(Level.FINE,
|
||||||
|
"Shutting down, currently have {} subchannels created", subchannels.size());
|
||||||
|
rawConnectivityState = SHUTDOWN;
|
||||||
|
concludedState = SHUTDOWN;
|
||||||
|
cancelScheduleTask();
|
||||||
|
|
||||||
for (SubchannelData subchannelData : subchannels.values()) {
|
for (SubchannelData subchannelData : subchannels.values()) {
|
||||||
subchannelData.getSubchannel().shutdown();
|
subchannelData.getSubchannel().shutdown();
|
||||||
}
|
}
|
||||||
|
|
||||||
subchannels.clear();
|
subchannels.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -280,6 +325,7 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
* that all other subchannels must be shutdown.
|
* that all other subchannels must be shutdown.
|
||||||
*/
|
*/
|
||||||
private void shutdownRemaining(SubchannelData activeSubchannelData) {
|
private void shutdownRemaining(SubchannelData activeSubchannelData) {
|
||||||
|
cancelScheduleTask();
|
||||||
for (SubchannelData subchannelData : subchannels.values()) {
|
for (SubchannelData subchannelData : subchannels.values()) {
|
||||||
if (!subchannelData.getSubchannel().equals(activeSubchannelData.subchannel)) {
|
if (!subchannelData.getSubchannel().equals(activeSubchannelData.subchannel)) {
|
||||||
subchannelData.getSubchannel().shutdown();
|
subchannelData.getSubchannel().shutdown();
|
||||||
|
|
@ -291,29 +337,85 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Requests a connection to the next applicable address' subchannel, creating one if necessary
|
* Requests a connection to the next applicable address' subchannel, creating one if necessary.
|
||||||
* If the current channel has already attempted a connection, we attempt a connection
|
* Schedules a connection to next address in list as well.
|
||||||
* to the next address/subchannel in our list.
|
* If the current channel has already attempted a connection, we attempt a connection
|
||||||
*/
|
* to the next address/subchannel in our list. We assume that createNewSubchannel will never
|
||||||
|
* return null.
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void requestConnection() {
|
public void requestConnection() {
|
||||||
if (subchannels.size() == 0) {
|
if (addressIndex == null || !addressIndex.isValid() || rawConnectivityState == SHUTDOWN ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (addressIndex.isValid()) {
|
|
||||||
Subchannel subchannel = subchannels.containsKey(addressIndex.getCurrentAddress())
|
|
||||||
? subchannels.get(addressIndex.getCurrentAddress()).getSubchannel()
|
|
||||||
: createNewSubchannel(addressIndex.getCurrentAddress());
|
|
||||||
|
|
||||||
ConnectivityState subchannelState =
|
Subchannel subchannel;
|
||||||
subchannels.get(addressIndex.getCurrentAddress()).getState();
|
SocketAddress currentAddress;
|
||||||
if (subchannelState == IDLE) {
|
currentAddress = addressIndex.getCurrentAddress();
|
||||||
|
subchannel = subchannels.containsKey(currentAddress)
|
||||||
|
? subchannels.get(currentAddress).getSubchannel()
|
||||||
|
: createNewSubchannel(currentAddress);
|
||||||
|
|
||||||
|
ConnectivityState subchannelState = subchannels.get(currentAddress).getState();
|
||||||
|
switch (subchannelState) {
|
||||||
|
case IDLE:
|
||||||
subchannel.requestConnection();
|
subchannel.requestConnection();
|
||||||
} else if (subchannelState == CONNECTING || subchannelState == TRANSIENT_FAILURE) {
|
subchannels.get(currentAddress).updateState(CONNECTING);
|
||||||
|
scheduleNextConnection();
|
||||||
|
break;
|
||||||
|
case CONNECTING:
|
||||||
|
if (enableHappyEyeballs) {
|
||||||
|
scheduleNextConnection();
|
||||||
|
} else {
|
||||||
|
subchannel.requestConnection();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case TRANSIENT_FAILURE:
|
||||||
addressIndex.increment();
|
addressIndex.increment();
|
||||||
requestConnection();
|
requestConnection();
|
||||||
|
break;
|
||||||
|
case READY: // Shouldn't ever happen
|
||||||
|
log.warning("Requesting a connection even though we have a READY subchannel");
|
||||||
|
break;
|
||||||
|
case SHUTDOWN:
|
||||||
|
default:
|
||||||
|
// Makes checkstyle happy
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Happy Eyeballs
|
||||||
|
* Schedules connection attempt to happen after a delay to the next available address.
|
||||||
|
*/
|
||||||
|
private void scheduleNextConnection() {
|
||||||
|
if (!enableHappyEyeballs
|
||||||
|
|| (scheduleConnectionTask != null && scheduleConnectionTask.isPending())) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
class StartNextConnection implements Runnable {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
scheduleConnectionTask = null;
|
||||||
|
if (addressIndex.increment()) {
|
||||||
|
requestConnection();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
scheduleConnectionTask = helper.getSynchronizationContext().schedule(
|
||||||
|
new StartNextConnection(),
|
||||||
|
CONNECTION_DELAY_INTERVAL_MS,
|
||||||
|
TimeUnit.MILLISECONDS,
|
||||||
|
helper.getScheduledExecutorService());
|
||||||
|
}
|
||||||
|
|
||||||
|
private void cancelScheduleTask() {
|
||||||
|
if (scheduleConnectionTask != null) {
|
||||||
|
scheduleConnectionTask.cancel();
|
||||||
|
scheduleConnectionTask = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private Subchannel createNewSubchannel(SocketAddress addr) {
|
private Subchannel createNewSubchannel(SocketAddress addr) {
|
||||||
|
|
@ -324,6 +426,10 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
new EquivalentAddressGroup(addr)))
|
new EquivalentAddressGroup(addr)))
|
||||||
.addOption(HEALTH_CONSUMER_LISTENER_ARG_KEY, hcListener)
|
.addOption(HEALTH_CONSUMER_LISTENER_ARG_KEY, hcListener)
|
||||||
.build());
|
.build());
|
||||||
|
if (subchannel == null) {
|
||||||
|
log.warning("Was not able to create subchannel for " + addr);
|
||||||
|
throw new IllegalStateException("Can't create subchannel");
|
||||||
|
}
|
||||||
SubchannelData subchannelData = new SubchannelData(subchannel, IDLE, hcListener);
|
SubchannelData subchannelData = new SubchannelData(subchannel, IDLE, hcListener);
|
||||||
hcListener.subchannelData = subchannelData;
|
hcListener.subchannelData = subchannelData;
|
||||||
subchannels.put(addr, subchannelData);
|
subchannels.put(addr, subchannelData);
|
||||||
|
|
@ -331,15 +437,23 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
if (attrs.get(LoadBalancer.HAS_HEALTH_PRODUCER_LISTENER_KEY) == null) {
|
if (attrs.get(LoadBalancer.HAS_HEALTH_PRODUCER_LISTENER_KEY) == null) {
|
||||||
hcListener.healthStateInfo = ConnectivityStateInfo.forNonError(READY);
|
hcListener.healthStateInfo = ConnectivityStateInfo.forNonError(READY);
|
||||||
}
|
}
|
||||||
subchannel.start(new SubchannelStateListener() {
|
subchannel.start(stateInfo -> processSubchannelState(subchannel, stateInfo));
|
||||||
@Override
|
|
||||||
public void onSubchannelState(ConnectivityStateInfo stateInfo) {
|
|
||||||
processSubchannelState(subchannel, stateInfo);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return subchannel;
|
return subchannel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private boolean isPassComplete() {
|
||||||
|
if (addressIndex == null || addressIndex.isValid()
|
||||||
|
|| subchannels.size() < addressIndex.size()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
for (SubchannelData sc : subchannels.values()) {
|
||||||
|
if (!sc.isCompletedConnectivityAttempt() ) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
private final class HealthListener implements SubchannelStateListener {
|
private final class HealthListener implements SubchannelStateListener {
|
||||||
private ConnectivityStateInfo healthStateInfo = ConnectivityStateInfo.forNonError(IDLE);
|
private ConnectivityStateInfo healthStateInfo = ConnectivityStateInfo.forNonError(IDLE);
|
||||||
private SubchannelData subchannelData;
|
private SubchannelData subchannelData;
|
||||||
|
|
@ -402,12 +516,7 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
@Override
|
@Override
|
||||||
public PickResult pickSubchannel(PickSubchannelArgs args) {
|
public PickResult pickSubchannel(PickSubchannelArgs args) {
|
||||||
if (connectionRequested.compareAndSet(false, true)) {
|
if (connectionRequested.compareAndSet(false, true)) {
|
||||||
helper.getSynchronizationContext().execute(new Runnable() {
|
helper.getSynchronizationContext().execute(pickFirstLeafLoadBalancer::requestConnection);
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
pickFirstLeafLoadBalancer.requestConnection();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
return PickResult.withNoResult();
|
return PickResult.withNoResult();
|
||||||
}
|
}
|
||||||
|
|
@ -415,6 +524,7 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Index as in 'i', the pointer to an entry. Not a "search index."
|
* Index as in 'i', the pointer to an entry. Not a "search index."
|
||||||
|
* All updates should be done in a synchronization context.
|
||||||
*/
|
*/
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
static final class Index {
|
static final class Index {
|
||||||
|
|
@ -423,11 +533,11 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
private int addressIndex;
|
private int addressIndex;
|
||||||
|
|
||||||
public Index(List<EquivalentAddressGroup> groups) {
|
public Index(List<EquivalentAddressGroup> groups) {
|
||||||
this.addressGroups = groups;
|
this.addressGroups = groups != null ? groups : Collections.emptyList();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isValid() {
|
public boolean isValid() {
|
||||||
// addressIndex will never be invalid
|
// Is invalid if empty or has incremented off the end
|
||||||
return groupIndex < addressGroups.size();
|
return groupIndex < addressGroups.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -435,13 +545,24 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
return groupIndex == 0 && addressIndex == 0;
|
return groupIndex == 0 && addressIndex == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void increment() {
|
/**
|
||||||
|
* Move to next address in group. If last address in group move to first address of next group.
|
||||||
|
* @return false if went off end of the list, otherwise true
|
||||||
|
*/
|
||||||
|
public boolean increment() {
|
||||||
|
if (!isValid()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
EquivalentAddressGroup group = addressGroups.get(groupIndex);
|
EquivalentAddressGroup group = addressGroups.get(groupIndex);
|
||||||
addressIndex++;
|
addressIndex++;
|
||||||
if (addressIndex >= group.getAddresses().size()) {
|
if (addressIndex >= group.getAddresses().size()) {
|
||||||
groupIndex++;
|
groupIndex++;
|
||||||
addressIndex = 0;
|
addressIndex = 0;
|
||||||
|
return groupIndex < addressGroups.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void reset() {
|
public void reset() {
|
||||||
|
|
@ -450,22 +571,24 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
}
|
}
|
||||||
|
|
||||||
public SocketAddress getCurrentAddress() {
|
public SocketAddress getCurrentAddress() {
|
||||||
|
if (!isValid()) {
|
||||||
|
throw new IllegalStateException("Index is past the end of the address group list");
|
||||||
|
}
|
||||||
return addressGroups.get(groupIndex).getAddresses().get(addressIndex);
|
return addressGroups.get(groupIndex).getAddresses().get(addressIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Attributes getCurrentEagAttributes() {
|
public Attributes getCurrentEagAttributes() {
|
||||||
|
if (!isValid()) {
|
||||||
|
throw new IllegalStateException("Index is off the end of the address group list");
|
||||||
|
}
|
||||||
return addressGroups.get(groupIndex).getAttributes();
|
return addressGroups.get(groupIndex).getAttributes();
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<EquivalentAddressGroup> getGroups() {
|
|
||||||
return addressGroups;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Update to new groups, resetting the current index.
|
* Update to new groups, resetting the current index.
|
||||||
*/
|
*/
|
||||||
public void updateGroups(List<EquivalentAddressGroup> newGroups) {
|
public void updateGroups(ImmutableList<EquivalentAddressGroup> newGroups) {
|
||||||
addressGroups = newGroups;
|
addressGroups = newGroups != null ? newGroups : Collections.emptyList();
|
||||||
reset();
|
reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -485,12 +608,17 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int size() {
|
||||||
|
return (addressGroups != null) ? addressGroups.size() : 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final class SubchannelData {
|
private static final class SubchannelData {
|
||||||
private final Subchannel subchannel;
|
private final Subchannel subchannel;
|
||||||
private ConnectivityState state;
|
private ConnectivityState state;
|
||||||
private final HealthListener healthListener;
|
private final HealthListener healthListener;
|
||||||
|
private boolean completedConnectivityAttempt = false;
|
||||||
|
|
||||||
public SubchannelData(Subchannel subchannel, ConnectivityState state,
|
public SubchannelData(Subchannel subchannel, ConnectivityState state,
|
||||||
HealthListener subchannelHealthListener) {
|
HealthListener subchannelHealthListener) {
|
||||||
|
|
@ -507,8 +635,17 @@ final class PickFirstLeafLoadBalancer extends LoadBalancer {
|
||||||
return this.state;
|
return this.state;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isCompletedConnectivityAttempt() {
|
||||||
|
return completedConnectivityAttempt;
|
||||||
|
}
|
||||||
|
|
||||||
private void updateState(ConnectivityState newState) {
|
private void updateState(ConnectivityState newState) {
|
||||||
this.state = newState;
|
this.state = newState;
|
||||||
|
if (newState == READY || newState == TRANSIENT_FAILURE) {
|
||||||
|
completedConnectivityAttempt = true;
|
||||||
|
} else if (newState == IDLE) {
|
||||||
|
completedConnectivityAttempt = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private ConnectivityState getHealthState() {
|
private ConnectivityState getHealthState() {
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue