JeetKunDoug commented on code in PR #74: URL: https://github.com/apache/cassandra-sidecar/pull/74#discussion_r1414719714
########## src/main/java/org/apache/cassandra/sidecar/cluster/SidecarLoadBalancingPolicy.java: ########## @@ -0,0 +1,217 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.cassandra.sidecar.cluster; + +import java.net.InetSocketAddress; +import java.security.SecureRandom; +import java.util.ArrayList; +import java.util.Collection; +import java.util.Collections; +import java.util.HashSet; +import java.util.Iterator; +import java.util.List; +import java.util.Random; +import java.util.Set; + +import com.google.common.collect.Iterators; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import com.datastax.driver.core.Cluster; +import com.datastax.driver.core.DriverExtensions; +import com.datastax.driver.core.Host; +import com.datastax.driver.core.HostDistance; +import com.datastax.driver.core.Statement; +import com.datastax.driver.core.policies.DCAwareRoundRobinPolicy; +import com.datastax.driver.core.policies.LoadBalancingPolicy; +import com.datastax.driver.core.policies.RoundRobinPolicy; + +/** + * The SidecarLoadBalancingPolicy is designed to ensure that the Cassandra Metadata objects associated with the + * CqlSessionProvider have enough non-local hosts in their allowed connections to be kept up-to-date + * even if the local Cassandra instances are down/have their native transport disabled. + * NOTE: This policy won't work with a child policy that is token-aware + */ +class SidecarLoadBalancingPolicy implements LoadBalancingPolicy +{ + public static final int MIN_ADDITIONAL_CONNECTIONS = 2; + private static final Logger LOGGER = LoggerFactory.getLogger(SidecarLoadBalancingPolicy.class); + private final Set<Host> selectedHosts = new HashSet<>(); + private final Set<InetSocketAddress> localHostAddresses; + private final LoadBalancingPolicy childPolicy; + private final int totalRequestedConnections; + private final Random secureRandom = new SecureRandom(); + private final HashSet<Host> allHosts = new HashSet<>(); + private Cluster cluster; + + public SidecarLoadBalancingPolicy(List<InetSocketAddress> localHostAddresses, + String localDc, + int numAdditionalConnections) + { + this.childPolicy = createChildPolicy(localDc); + this.localHostAddresses = new HashSet<>(localHostAddresses); + if (numAdditionalConnections < MIN_ADDITIONAL_CONNECTIONS) + { + LOGGER.warn("Additional instances requested was {}, which is less than the minimum of {}. Using {}.", + numAdditionalConnections, MIN_ADDITIONAL_CONNECTIONS, MIN_ADDITIONAL_CONNECTIONS); + numAdditionalConnections = MIN_ADDITIONAL_CONNECTIONS; + } + this.totalRequestedConnections = this.localHostAddresses.size() + numAdditionalConnections; + } + + @Override + public void init(Cluster cluster, Collection<Host> hosts) + { + this.cluster = cluster; + this.allHosts.addAll(hosts); + recalculateSelectedHosts(); + childPolicy.init(cluster, hosts); + } + + @Override + public HostDistance distance(Host host) + { + if (!selectedHosts.contains(host)) + { + return HostDistance.IGNORED; + } + return childPolicy.distance(host); + } + + @Override + public Iterator<Host> newQueryPlan(String loggedKeyspace, Statement statement) + { + Iterator<Host> child = childPolicy.newQueryPlan(loggedKeyspace, statement); + // Filter the child policy to only selected hosts + return Iterators.filter(child, selectedHosts::contains); + } + + @Override + public synchronized void onAdd(Host host) + { + onUp(host); + childPolicy.onAdd(host); + } + + @Override + public synchronized void onUp(Host host) + { + this.allHosts.add(host); // replace existing reference if there is one + if (selectedHosts.size() < totalRequestedConnections) + { + recalculateSelectedHosts(); + } + childPolicy.onUp(host); + } + + @Override + public synchronized void onDown(Host host) + { + // Don't remove local addresses from the selected host list + if (localHostAddresses.contains(host.getBroadcastRpcAddress())) + { + return; + } Review Comment: Local hosts should always be in the list even if they are down - the client will not use them if it thinks they are down, and this way we know they are always in the list and don't have to do anything more with down nodes. I'm not sure if a node going down (local or otherwise) is worth a WARN - maybe debug, but it's not an uncommon occurrence so spitting out a WARN here seems overly noisy. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

