util: Pass an AtomicInteger to RR's ReadyPicker

We already do this for WRR. Notably, we are no longer trying to avoid
the modulus each pick. It was of questionable value, and removing it is
necessary to continue sharing the same integer when the list size
changes.

The change means we can implement a stronger isEquivalentTo() by
comparing the AtomicInteger references. It is strong enough that the
operation aligns with normal equals(). Using equals() instead of
isEquivalentTo() also made more obvious an equals() optimization that
uses the hashCode() before the more expensive HashSet creation; equals()
should now be very fast except when they are (very likely) equal.
This commit is contained in:
Eric Anderson 2023-11-27 14:27:42 -08:00 committed by GitHub
parent 43e06372ec
commit dca89b25bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 102 additions and 109 deletions

View File

@ -24,22 +24,19 @@ import static io.grpc.ConnectivityState.TRANSIENT_FAILURE;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.MoreObjects;
import com.google.common.base.Objects;
import com.google.common.base.Preconditions;
import io.grpc.ConnectivityState;
import io.grpc.EquivalentAddressGroup;
import io.grpc.Internal;
import io.grpc.LoadBalancer;
import io.grpc.NameResolver;
import io.grpc.Status;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Random;
import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
import javax.annotation.Nonnull;
import java.util.concurrent.atomic.AtomicInteger;
/**
* A {@link LoadBalancer} that provides round-robin load-balancing over the {@link
@ -47,12 +44,11 @@ import javax.annotation.Nonnull;
*/
@Internal
public class RoundRobinLoadBalancer extends MultiChildLoadBalancer {
private final Random random;
protected RoundRobinPicker currentPicker = new EmptyPicker(EMPTY_OK);
private final AtomicInteger sequence = new AtomicInteger(new Random().nextInt());
protected SubchannelPicker currentPicker = new EmptyPicker();
public RoundRobinLoadBalancer(Helper helper) {
super(helper);
this.random = new Random();
}
@Override
@ -60,8 +56,6 @@ public class RoundRobinLoadBalancer extends MultiChildLoadBalancer {
throw new UnsupportedOperationException(); // local updateOverallBalancingState doesn't use this
}
private static final Status EMPTY_OK = Status.OK.withDescription("no subchannels ready");
/**
* Updates picker with the list of active subchannels (state == READY).
*/
@ -82,7 +76,7 @@ public class RoundRobinLoadBalancer extends MultiChildLoadBalancer {
}
if (isConnecting) {
updateBalancingState(CONNECTING, new EmptyPicker(Status.OK));
updateBalancingState(CONNECTING, new EmptyPicker());
} else {
updateBalancingState(TRANSIENT_FAILURE, createReadyPicker(getChildLbStates()));
}
@ -91,45 +85,45 @@ public class RoundRobinLoadBalancer extends MultiChildLoadBalancer {
}
}
private void updateBalancingState(ConnectivityState state, RoundRobinPicker picker) {
if (state != currentConnectivityState || !picker.isEquivalentTo(currentPicker)) {
private void updateBalancingState(ConnectivityState state, SubchannelPicker picker) {
if (state != currentConnectivityState || !picker.equals(currentPicker)) {
getHelper().updateBalancingState(state, picker);
currentConnectivityState = state;
currentPicker = picker;
}
}
protected RoundRobinPicker createReadyPicker(Collection<ChildLbState> children) {
// initialize the Picker to a random start index to ensure that a high frequency of Picker
// churn does not skew subchannel selection.
int startIndex = random.nextInt(children.size());
protected SubchannelPicker createReadyPicker(Collection<ChildLbState> children) {
List<SubchannelPicker> pickerList = new ArrayList<>();
for (ChildLbState child : children) {
SubchannelPicker picker = child.getCurrentPicker();
pickerList.add(picker);
}
return new ReadyPicker(pickerList, startIndex);
}
public abstract static class RoundRobinPicker extends SubchannelPicker {
public abstract boolean isEquivalentTo(RoundRobinPicker picker);
return new ReadyPicker(pickerList, sequence);
}
@VisibleForTesting
static class ReadyPicker extends RoundRobinPicker {
private static final AtomicIntegerFieldUpdater<ReadyPicker> indexUpdater =
AtomicIntegerFieldUpdater.newUpdater(ReadyPicker.class, "index");
static class ReadyPicker extends SubchannelPicker {
private final List<SubchannelPicker> subchannelPickers; // non-empty
@SuppressWarnings("unused")
private volatile int index;
private final AtomicInteger index;
private final int hashCode;
public ReadyPicker(List<SubchannelPicker> list, int startIndex) {
public ReadyPicker(List<SubchannelPicker> list, AtomicInteger index) {
checkArgument(!list.isEmpty(), "empty list");
this.subchannelPickers = list;
this.index = startIndex - 1;
this.index = Preconditions.checkNotNull(index, "index");
// Every created picker is checked for equality in updateBalancingState() at least once.
// Pre-compute the hash so it can be checked cheaply. Using the hash in equals() makes it very
// fast except when the pickers are (very likely) equal.
//
// For equality we treat children as a set; use hash code as defined by Set
int sum = 0;
for (SubchannelPicker picker : subchannelPickers) {
sum += picker.hashCode();
}
this.hashCode = sum;
}
@Override
@ -145,14 +139,8 @@ public class RoundRobinLoadBalancer extends MultiChildLoadBalancer {
}
private int nextIndex() {
int size = subchannelPickers.size();
int i = indexUpdater.incrementAndGet(this);
if (i >= size) {
int oldi = i;
i %= size;
indexUpdater.compareAndSet(this, oldi, i);
}
return i;
int i = index.getAndIncrement() & Integer.MAX_VALUE;
return i % subchannelPickers.size();
}
@VisibleForTesting
@ -161,53 +149,42 @@ public class RoundRobinLoadBalancer extends MultiChildLoadBalancer {
}
@Override
public boolean isEquivalentTo(RoundRobinPicker picker) {
if (!(picker instanceof ReadyPicker)) {
public int hashCode() {
return hashCode;
}
@Override
public boolean equals(Object o) {
if (!(o instanceof ReadyPicker)) {
return false;
}
ReadyPicker other = (ReadyPicker) picker;
ReadyPicker other = (ReadyPicker) o;
if (other == this) {
return true;
}
// the lists cannot contain duplicate subchannels
return other == this
|| (subchannelPickers.size() == other.subchannelPickers.size() && new HashSet<>(
subchannelPickers).containsAll(other.subchannelPickers));
return hashCode == other.hashCode
&& index == other.index
&& subchannelPickers.size() == other.subchannelPickers.size()
&& new HashSet<>(subchannelPickers).containsAll(other.subchannelPickers);
}
}
@VisibleForTesting
static final class EmptyPicker extends RoundRobinPicker {
private final Status status;
EmptyPicker(@Nonnull Status status) {
this.status = Preconditions.checkNotNull(status, "status");
}
static final class EmptyPicker extends SubchannelPicker {
@Override
public PickResult pickSubchannel(PickSubchannelArgs args) {
return status.isOk() ? PickResult.withNoResult() : PickResult.withError(status);
return PickResult.withNoResult();
}
@Override
public boolean isEquivalentTo(RoundRobinPicker picker) {
return picker instanceof EmptyPicker && (Objects.equal(status, ((EmptyPicker) picker).status)
|| (status.isOk() && ((EmptyPicker) picker).status.isOk()));
public int hashCode() {
return getClass().hashCode();
}
@Override
public String toString() {
return MoreObjects.toStringHelper(EmptyPicker.class).add("status", status).toString();
}
}
/**
* A lighter weight Reference than AtomicReference.
*/
@VisibleForTesting
static final class Ref<T> {
T value;
Ref(T value) {
this.value = value;
public boolean equals(Object o) {
return o instanceof EmptyPicker;
}
}
}

View File

@ -23,9 +23,7 @@ import static io.grpc.ConnectivityState.READY;
import static io.grpc.ConnectivityState.SHUTDOWN;
import static io.grpc.ConnectivityState.TRANSIENT_FAILURE;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.mockito.AdditionalAnswers.delegatesTo;
import static org.mockito.ArgumentMatchers.any;
@ -64,6 +62,7 @@ import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicInteger;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
@ -376,22 +375,20 @@ public class RoundRobinLoadBalancerTest {
TestUtils.pickerOf(subchannel), TestUtils.pickerOf(subchannel1),
TestUtils.pickerOf(subchannel2));
ReadyPicker picker = new ReadyPicker(Collections.unmodifiableList(pickers),
0 /* startIndex */);
AtomicInteger seq = new AtomicInteger(0);
ReadyPicker picker = new ReadyPicker(Collections.unmodifiableList(pickers), seq);
assertEquals(subchannel, picker.pickSubchannel(mockArgs).getSubchannel());
assertEquals(subchannel1, picker.pickSubchannel(mockArgs).getSubchannel());
assertEquals(subchannel2, picker.pickSubchannel(mockArgs).getSubchannel());
assertEquals(subchannel, picker.pickSubchannel(mockArgs).getSubchannel());
}
@Test
public void pickerEmptyList() throws Exception {
SubchannelPicker picker = new EmptyPicker(Status.UNKNOWN);
assertNull(picker.pickSubchannel(mockArgs).getSubchannel());
assertEquals(Status.UNKNOWN,
picker.pickSubchannel(mockArgs).getStatus());
seq.set(Integer.MAX_VALUE);
assertEquals(subchannel1, picker.pickSubchannel(mockArgs).getSubchannel());
assertEquals(subchannel, picker.pickSubchannel(mockArgs).getSubchannel());
assertEquals(subchannel1, picker.pickSubchannel(mockArgs).getSubchannel());
assertEquals(subchannel2, picker.pickSubchannel(mockArgs).getSubchannel());
assertEquals(subchannel, picker.pickSubchannel(mockArgs).getSubchannel());
}
@Test
@ -481,7 +478,7 @@ public class RoundRobinLoadBalancerTest {
public void readyPicker_emptyList() {
// ready picker list must be non-empty
try {
new ReadyPicker(Collections.emptyList(), 0);
new ReadyPicker(Collections.emptyList(), new AtomicInteger(0));
fail();
} catch (IllegalArgumentException expected) {
}
@ -489,28 +486,27 @@ public class RoundRobinLoadBalancerTest {
@Test
public void internalPickerComparisons() {
EmptyPicker emptyOk1 = new EmptyPicker(Status.OK);
EmptyPicker emptyOk2 = new EmptyPicker(Status.OK.withDescription("different OK"));
EmptyPicker emptyErr = new EmptyPicker(Status.UNKNOWN.withDescription("¯\\_(ツ)_//¯"));
SubchannelPicker empty1 = new EmptyPicker();
SubchannelPicker empty2 = new EmptyPicker();
AtomicInteger seq = new AtomicInteger(0);
acceptAddresses(servers, Attributes.EMPTY); // create subchannels
Iterator<Subchannel> subchannelIterator = subchannels.values().iterator();
SubchannelPicker sc1 = TestUtils.pickerOf(subchannelIterator.next());
SubchannelPicker sc2 = TestUtils.pickerOf(subchannelIterator.next());
ReadyPicker ready1 = new ReadyPicker(Arrays.asList(sc1, sc2), 0);
ReadyPicker ready2 = new ReadyPicker(Arrays.asList(sc1), 0);
ReadyPicker ready3 = new ReadyPicker(Arrays.asList(sc2, sc1), 1);
ReadyPicker ready4 = new ReadyPicker(Arrays.asList(sc1, sc2), 1);
ReadyPicker ready5 = new ReadyPicker(Arrays.asList(sc2, sc1), 0);
SubchannelPicker ready1 = new ReadyPicker(Arrays.asList(sc1, sc2), seq);
SubchannelPicker ready2 = new ReadyPicker(Arrays.asList(sc1), seq);
SubchannelPicker ready3 = new ReadyPicker(Arrays.asList(sc2, sc1), seq);
SubchannelPicker ready4 = new ReadyPicker(Arrays.asList(sc1, sc2), seq);
SubchannelPicker ready5 = new ReadyPicker(Arrays.asList(sc2, sc1), new AtomicInteger(0));
assertTrue(emptyOk1.isEquivalentTo(emptyOk2));
assertFalse(emptyOk1.isEquivalentTo(emptyErr));
assertFalse(ready1.isEquivalentTo(ready2));
assertTrue(ready1.isEquivalentTo(ready3));
assertTrue(ready3.isEquivalentTo(ready4));
assertTrue(ready4.isEquivalentTo(ready5));
assertFalse(emptyOk1.isEquivalentTo(ready1));
assertFalse(ready1.isEquivalentTo(emptyOk1));
assertThat(empty1).isEqualTo(empty2);
assertThat(ready1).isNotEqualTo(ready2);
assertThat(ready1).isEqualTo(ready3);
assertThat(ready3).isEqualTo(ready4);
assertThat(ready4).isNotEqualTo(ready5);
assertThat(empty1).isNotEqualTo(ready1);
assertThat(ready1).isNotEqualTo(empty1);
}
@Test

View File

@ -143,9 +143,9 @@ final class WeightedRoundRobinLoadBalancer extends RoundRobinLoadBalancer {
}
@Override
public RoundRobinPicker createReadyPicker(Collection<ChildLbState> activeList) {
public SubchannelPicker createReadyPicker(Collection<ChildLbState> activeList) {
return new WeightedRoundRobinPicker(ImmutableList.copyOf(activeList),
config.enableOobLoadReport, config.errorUtilizationPenalty);
config.enableOobLoadReport, config.errorUtilizationPenalty, sequence);
}
// Expose for tests in this package.
@ -334,16 +334,18 @@ final class WeightedRoundRobinLoadBalancer extends RoundRobinLoadBalancer {
}
@VisibleForTesting
final class WeightedRoundRobinPicker extends RoundRobinPicker {
static final class WeightedRoundRobinPicker extends SubchannelPicker {
private final List<ChildLbState> children;
private final Map<Subchannel, OrcaPerRequestReportListener> subchannelToReportListenerMap =
new HashMap<>();
private final boolean enableOobLoadReport;
private final float errorUtilizationPenalty;
private final AtomicInteger sequence;
private final int hashCode;
private volatile StaticStrideScheduler scheduler;
WeightedRoundRobinPicker(List<ChildLbState> children, boolean enableOobLoadReport,
float errorUtilizationPenalty) {
float errorUtilizationPenalty, AtomicInteger sequence) {
checkNotNull(children, "children");
Preconditions.checkArgument(!children.isEmpty(), "empty child list");
this.children = children;
@ -356,6 +358,17 @@ final class WeightedRoundRobinLoadBalancer extends RoundRobinLoadBalancer {
}
this.enableOobLoadReport = enableOobLoadReport;
this.errorUtilizationPenalty = errorUtilizationPenalty;
this.sequence = checkNotNull(sequence, "sequence");
// For equality we treat children as a set; use hash code as defined by Set
int sum = 0;
for (ChildLbState child : children) {
sum += child.hashCode();
}
this.hashCode = sum
^ Boolean.hashCode(enableOobLoadReport)
^ Float.hashCode(errorUtilizationPenalty);
updateWeight();
}
@ -398,19 +411,26 @@ final class WeightedRoundRobinLoadBalancer extends RoundRobinLoadBalancer {
}
@Override
public boolean isEquivalentTo(RoundRobinPicker picker) {
if (!(picker instanceof WeightedRoundRobinPicker)) {
public int hashCode() {
return hashCode;
}
@Override
public boolean equals(Object o) {
if (!(o instanceof WeightedRoundRobinPicker)) {
return false;
}
WeightedRoundRobinPicker other = (WeightedRoundRobinPicker) picker;
WeightedRoundRobinPicker other = (WeightedRoundRobinPicker) o;
if (other == this) {
return true;
}
// the lists cannot contain duplicate subchannels
return enableOobLoadReport == other.enableOobLoadReport
return hashCode == other.hashCode
&& sequence == other.sequence
&& enableOobLoadReport == other.enableOobLoadReport
&& Float.compare(errorUtilizationPenalty, other.errorUtilizationPenalty) == 0
&& children.size() == other.children.size() && new HashSet<>(
children).containsAll(other.children);
&& children.size() == other.children.size()
&& new HashSet<>(children).containsAll(other.children);
}
}