Class SyncConsistentHashFactory
- java.lang.Object
-
- org.infinispan.distribution.ch.impl.SyncConsistentHashFactory
-
- All Implemented Interfaces:
ConsistentHashFactory<DefaultConsistentHash>
- Direct Known Subclasses:
TopologyAwareSyncConsistentHashFactory
public class SyncConsistentHashFactory extends Object implements ConsistentHashFactory<DefaultConsistentHash>
One of the assumptions people made on consistent hashing involves thinking that given a particular key and same topology, it would produce the same consistent hash value no matter which cache it was stored in. However, that's not exactly the case in Infinispan. In order to the optimise the number of segments moved on join/leave, Infinispan uses a consistent hash that depends on the previous consistent hash. Given two caches, even if they contain exactly the same keyset, it's very easy for the consistent hash history to differ, e.g. if 2 nodes join you might see two separate topology change in one cache and a single topology change in the other. The reason for that each node has to send aCacheJoinCommandfor each cache it wants to join and Infinispan can and does batch cache topology changes. For example, if a rebalance is in progress, joins are queued and send in one go when the rebalance has finished. ThisConsistentHashFactoryimplementation avoids any of the issues mentioned and guarantees that multiple caches with the same members will have the same consistent hash. It has a drawback compared toDefaultConsistentHashFactorythough: it can potentially move a lot more segments during a rebalance than strictly necessary because it's not taking advantage of the optimisation mentioned above.- Since:
- 5.2
- Author:
- Dan Berindei
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSyncConsistentHashFactory.Externalizer
-
Field Summary
Fields Modifier and Type Field Description static floatOWNED_SEGMENTS_ALLOWED_VARIATIONstatic floatPRIMARY_SEGMENTS_ALLOWED_VARIATION
-
Constructor Summary
Constructors Constructor Description SyncConsistentHashFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DefaultConsistentHashcreate(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)Create a new consistent hash instance.booleanequals(Object other)DefaultConsistentHashfromPersistentState(ScopedPersistentState state)Recreates a ConsistentHash from a previously stored persistent state.inthashCode()DefaultConsistentHashrebalance(DefaultConsistentHash baseCH)Create a new consistent hash instance, based on an existing instance, but balanced according to the implementation's rules.DefaultConsistentHashunion(DefaultConsistentHash ch1, DefaultConsistentHash ch2)Creates a union of two compatible ConsistentHashes (use the same hashing function and have the same configuration parameters).DefaultConsistentHashupdateMembers(DefaultConsistentHash baseCH, List<Address> newMembers, Map<Address,Float> actualCapacityFactors)Updates an existing consistent hash instance to remove owners that are not in thenewMemberslist.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.infinispan.distribution.ch.ConsistentHashFactory
create
-
-
-
-
Field Detail
-
OWNED_SEGMENTS_ALLOWED_VARIATION
public static final float OWNED_SEGMENTS_ALLOWED_VARIATION
- See Also:
- Constant Field Values
-
PRIMARY_SEGMENTS_ALLOWED_VARIATION
public static final float PRIMARY_SEGMENTS_ALLOWED_VARIATION
- See Also:
- Constant Field Values
-
-
Method Detail
-
create
public DefaultConsistentHash create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)
Description copied from interface:ConsistentHashFactoryCreate a new consistent hash instance. The consistent hash will be balanced.- Specified by:
createin interfaceConsistentHashFactory<DefaultConsistentHash>- Parameters:
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.numSegments- Number of hash-space segments. The implementation may round up the number of segments for performance, or may ignore the parameter altogether.members- A list of addresses representing the new cache members.capacityFactors- The capacity factor of each member. Determines the relative capacity of each node compared to the others. The implementation may ignore this parameter. Ifnull, all the members are assumed to have a capacity factor of 1.
-
fromPersistentState
public DefaultConsistentHash fromPersistentState(ScopedPersistentState state)
Description copied from interface:ConsistentHashFactoryRecreates a ConsistentHash from a previously stored persistent state. The returned ConsistentHash will not have proper addresses, butPersistentUUIDs instead so they will need to be replaced- Specified by:
fromPersistentStatein interfaceConsistentHashFactory<DefaultConsistentHash>- Parameters:
state- the state to restore
-
updateMembers
public DefaultConsistentHash updateMembers(DefaultConsistentHash baseCH, List<Address> newMembers, Map<Address,Float> actualCapacityFactors)
Description copied from interface:ConsistentHashFactoryUpdates an existing consistent hash instance to remove owners that are not in thenewMemberslist.If a segment has at least one owner in
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
newMembersand theConsistentHashimplementation (e.g.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.- Specified by:
updateMembersin interfaceConsistentHashFactory<DefaultConsistentHash>- Parameters:
baseCH- An existing consistent hash instance, should not benullnewMembers- A list of addresses representing the new cache members.actualCapacityFactors- The capacity factor of each member. Determines the relative capacity of each node compared to the others. The implementation may ignore this parameter. Ifnull, all the members are assumed to have a capacity factor of 1.- Returns:
- A new
ConsistentHashinstance, orbaseCHif the existing instance does not need any changes.
-
rebalance
public DefaultConsistentHash rebalance(DefaultConsistentHash baseCH)
Description copied from interface:ConsistentHashFactoryCreate a new consistent hash instance, based on an existing instance, but balanced according to the implementation's rules.- Specified by:
rebalancein interfaceConsistentHashFactory<DefaultConsistentHash>- Parameters:
baseCH- An existing consistent hash instance, should not benull- Returns:
- A new
ConsistentHashinstance, orbaseCHif the existing instance does not need any changes.
-
union
public DefaultConsistentHash union(DefaultConsistentHash ch1, DefaultConsistentHash ch2)
Description copied from interface:ConsistentHashFactoryCreates a union of two compatible ConsistentHashes (use the same hashing function and have the same configuration parameters).The owners of a segment
sinunion(ch1, ch2)will include both the owners ofsinch1and the owners ofsinch2, so a cache can switch from usingunion(ch1, ch2)to usingch2without transferring any state.- Specified by:
unionin interfaceConsistentHashFactory<DefaultConsistentHash>
-
-