com.netflix.astyanax.connectionpool.impl.HostConnectionPoolPartition Maven / Gradle / Ivy
package com.netflix.astyanax.connectionpool.impl;
import java.util.Collection;
import java.util.List;
import java.util.Set;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicReference;
import org.apache.commons.lang.StringUtils;
import org.cliffc.high_scale_lib.NonBlockingHashSet;
import com.google.common.base.Function;
import com.google.common.collect.Collections2;
import com.google.common.collect.Lists;
import com.google.common.collect.Sets;
import com.netflix.astyanax.connectionpool.HostConnectionPool;
import com.netflix.astyanax.connectionpool.LatencyScoreStrategy;
/**
* Collection of hosts that are grouped by a certain criteria (such as token or rack)
* The class maintains the list of active pools for the given criteria (such as a token range in a ring)
* Any changes to the pools in this partition causes the active set to be revised and sorted according to the latency score strategy provided.
*
* Note that an instance of this class is maintained / referenced for each token range partition by the {@link TokenPartitionedTopology} instance
*
* @author elandau
*
* @param
*
* @see {@link TokenPartitionedTopology} for details on how this class is referenced.
*/
public class HostConnectionPoolPartition {
protected final AtomicBoolean prioritize = new AtomicBoolean(false);
protected final NonBlockingHashSet> pools = new NonBlockingHashSet>();
protected final AtomicReference>> activePools = new AtomicReference>>();
protected final LatencyScoreStrategy strategy;
public HostConnectionPoolPartition(LatencyScoreStrategy strategy) {
this.strategy = strategy;
this.activePools.set(Lists.>newArrayList());
}
/**
* Sets all pools for this partition. Removes old partitions and adds new
* one.
*
* @param newPools
*/
public synchronized boolean setPools(Collection> newPools) {
Set> toRemove = Sets.newHashSet(this.pools);
// Add new pools not previously seen
boolean didChange = false;
for (HostConnectionPool pool : newPools) {
if (this.pools.add(pool))
didChange = true;
toRemove.remove(pool);
}
// Remove pools for hosts that no longer exist
for (HostConnectionPool pool : toRemove) {
if (this.pools.remove(pool))
didChange = true;
}
if (didChange)
refresh();
return didChange;
}
/**
* Add a new pool to the partition. Checks to see if the pool already
* existed. If so then there is no need to refresh the pool.
* @param pool
* @return True if anything changed
*/
public synchronized boolean addPool(HostConnectionPool pool) {
if (this.pools.add(pool)) {
refresh();
return true;
}
return false;
}
public synchronized boolean removePool(HostConnectionPool pool) {
if (this.pools.remove(pool)) {
refresh();
return true;
}
return false;
}
/**
* @return Return the list of active hosts. Active hosts are those deemed by the
* latency score strategy to be alive and responsive.
*/
public List> getPools() {
return activePools.get();
}
/**
* If true the the hosts are sorted by order of priority where the
* first host gives the best performance
*/
public boolean isSorted() {
return prioritize.get();
}
/**
* Returns true if a pool is contained in this partition
* @param pool
*/
public boolean hasPool(HostConnectionPool pool) {
return pools.contains(pool);
}
/**
* Refresh the partition
*/
public synchronized void refresh() {
List> pools = Lists.newArrayList();
for (HostConnectionPool pool : this.pools) {
if (!pool.isReconnecting()) {
pools.add(pool);
}
}
this.activePools.set(strategy.sortAndfilterPartition(pools, prioritize));
}
public String toString() {
return new StringBuilder()
.append("BaseHostConnectionPoolPartition[")
.append(StringUtils.join(Collections2.transform(getPools(), new Function, String>() {
@Override
public String apply(HostConnectionPool host) {
return host.getHost().getHostName();
}
}), ","))
.append("]")
.toString();
}
}