
org.infinispan.distribution.ch.ConsistentHashFactory Maven / Gradle / Ivy
package org.infinispan.distribution.ch;
import java.util.List;
import java.util.Map;
import org.infinispan.commons.hash.Hash;
import org.infinispan.globalstate.ScopedPersistentState;
import org.infinispan.remoting.transport.Address;
/**
* Factory for {@link ConsistentHash} instances.
*
* We say a consistent hash {@code ch} is balanced iif {@code rebalance(ch).equals(ch)}.
*
*
The consistent hashes created by {@link #create(Hash, int, int, List, Map)} must be balanced,
* but the ones created by {@link #updateMembers(ConsistentHash, List, Map)} and
* {@link #union(ConsistentHash, ConsistentHash)} will likely be unbalanced.
*
* @see Non-BlockingStateTransferV2
*
* @author Dan Berindei
* @since 5.2
*/
public interface ConsistentHashFactory {
/**
* Create a new consistent hash instance.
*
* The consistent hash will be balanced.
*
* @param hashFunction The hash function to use on top of the keys' own {@code hashCode()} implementation.
* @param numOwners The ideal number of owners for each key. The created consistent hash
* can have more or less owners, but each key will have at least one owner.
* @param numSegments Number of hash-space segments. The implementation may round up the number
* of segments for performance, or may ignore the parameter altogether.
* @param members A list of addresses representing the new cache members.
* @param capacityFactors The capacity factor of each member. Determines the relative capacity of each node compared
* to the others. The implementation may ignore this parameter.
* If {@code null}, all the members are assumed to have a capacity factor of 1.
*/
CH create(Hash hashFunction, int numOwners, int numSegments, List members,
Map capacityFactors);
/**
* Updates an existing consistent hash instance to remove owners that are not in the {@code newMembers} list.
*
* If a segment has at least one owner in {@code newMembers}, this method will not add another owner.
* This guarantees that the new consistent hash can be used immediately, without transferring any state.
*
*
If a segment has no owners in {@code newMembers} and the {@link ConsistentHash} implementation
* (e.g. {@link org.infinispan.distribution.ch.impl.DefaultConsistentHash}) requires
* at least one owner for each segment, this method may add one or more owners for that segment.
* Since the data in that segment was lost, the new consistent hash can still be used without transferring state.
*
* @param baseCH An existing consistent hash instance, should not be {@code null}
* @param newMembers A list of addresses representing the new cache members.
* @param capacityFactors The capacity factor of each member. Determines the relative capacity of each node compared
* to the others. The implementation may ignore this parameter.
* If {@code null}, all the members are assumed to have a capacity factor of 1.
* @return A new {@link ConsistentHash} instance, or {@code baseCH} if the existing instance
* does not need any changes.
*/
CH updateMembers(CH baseCH, List
newMembers, Map capacityFactors);
/**
* Create a new consistent hash instance, based on an existing instance, but balanced according to
* the implementation's rules.
*
* @param baseCH An existing consistent hash instance, should not be {@code null}
* @return A new {@link ConsistentHash} instance, or {@code baseCH} if the existing instance
* does not need any changes.
*/
CH rebalance(CH baseCH);
/**
* Creates a union of two compatible ConsistentHashes (use the same hashing function and have the same configuration
* parameters).
*
* The owners of a segment {@code s} in {@code union(ch1, ch2)} will include both the owners of {@code s}
* in {@code ch1} and the owners of {@code s} in {@code ch2}, so a cache can switch from using
* {@code union(ch1, ch2)} to using {@code ch2} without transferring any state.
*/
CH union(CH ch1, CH ch2);
/**
* Recreates a ConsistentHash from a previously stored persistent state. The returned ConsistentHash will not have
* proper addresses, but {@link org.infinispan.topology.PersistentUUID}s instead so they will need to be replaced
* @param state the state to restore
*/
default CH fromPersistentState(ScopedPersistentState state) {
throw new UnsupportedOperationException();
}
}