public class DefaultConsistentHashFactory extends AbstractConsistentHashFactory<DefaultConsistentHash>
ConsistentHashFactory.
All methods except union(DefaultConsistentHash, DefaultConsistentHash) return a consistent hash
with floor(numOwners*numSegments/numNodes) <= segments per owner <= ceil(numOwners*numSegments/numNodes).| Modifier and Type | Class and Description |
|---|---|
protected static class |
DefaultConsistentHashFactory.Builder |
static class |
DefaultConsistentHashFactory.Externalizer |
| Constructor and Description |
|---|
DefaultConsistentHashFactory() |
| Modifier and Type | Method and Description |
|---|---|
protected void |
addBackupOwners(DefaultConsistentHashFactory.Builder builder) |
protected void |
addPrimaryOwners(DefaultConsistentHashFactory.Builder builder) |
DefaultConsistentHash |
create(int numOwners,
int numSegments,
List<Address> members,
Map<Address,Float> capacityFactors)
Create a new consistent hash instance.
|
protected void |
doAddBackupOwners(DefaultConsistentHashFactory.Builder builder) |
boolean |
equals(Object other) |
protected Address |
findNewBackupOwner(DefaultConsistentHashFactory.Builder builder,
Collection<Address> excludes,
Address owner) |
DefaultConsistentHash |
fromPersistentState(ScopedPersistentState state)
Recreates a ConsistentHash from a previously stored persistent state.
|
int |
hashCode() |
DefaultConsistentHash |
rebalance(DefaultConsistentHash baseCH)
Create a new consistent hash instance, based on an existing instance, but balanced according to
the implementation's rules.
|
protected void |
rebalanceBuilder(DefaultConsistentHashFactory.Builder builder) |
protected void |
removeExtraBackupOwners(DefaultConsistentHashFactory.Builder builder) |
protected void |
replaceBackupOwners(DefaultConsistentHashFactory.Builder builder) |
protected void |
replacePrimaryOwners(DefaultConsistentHashFactory.Builder builder,
int maxOwners) |
protected void |
swapPrimaryOwnersWithBackups(DefaultConsistentHashFactory.Builder builder) |
DefaultConsistentHash |
union(DefaultConsistentHash dch1,
DefaultConsistentHash dch2)
Merges two consistent hash objects that have the same number of segments, numOwners and hash function.
|
DefaultConsistentHash |
updateMembers(DefaultConsistentHash baseCH,
List<Address> actualMembers,
Map<Address,Float> actualCapacityFactors)
Leavers are removed and segments without owners are assigned new owners.
|
checkCapacityFactors, findNewPrimaryOwner, findWorstPrimaryOwnerclone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitcreatepublic DefaultConsistentHash create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)
ConsistentHashFactorynumOwners - 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.
If null, all the members are assumed to have a capacity factor of 1.public DefaultConsistentHash fromPersistentState(ScopedPersistentState state)
ConsistentHashFactoryPersistentUUIDs instead so they will need to be replacedstate - the state to restorepublic DefaultConsistentHash updateMembers(DefaultConsistentHash baseCH, List<Address> actualMembers, Map<Address,Float> actualCapacityFactors)
baseCH - An existing consistent hash instance, should not be nullactualMembers - 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.
If null, all the members are assumed to have a capacity factor of 1.public DefaultConsistentHash rebalance(DefaultConsistentHash baseCH)
ConsistentHashFactorybaseCH - An existing consistent hash instance, should not be nullConsistentHash instance, or baseCH if the existing instance
does not need any changes.public DefaultConsistentHash union(DefaultConsistentHash dch1, DefaultConsistentHash dch2)
protected void rebalanceBuilder(DefaultConsistentHashFactory.Builder builder)
protected void addPrimaryOwners(DefaultConsistentHashFactory.Builder builder)
protected void replacePrimaryOwners(DefaultConsistentHashFactory.Builder builder, int maxOwners)
protected void swapPrimaryOwnersWithBackups(DefaultConsistentHashFactory.Builder builder)
protected void addBackupOwners(DefaultConsistentHashFactory.Builder builder)
protected void removeExtraBackupOwners(DefaultConsistentHashFactory.Builder builder)
protected void doAddBackupOwners(DefaultConsistentHashFactory.Builder builder)
protected void replaceBackupOwners(DefaultConsistentHashFactory.Builder builder)
protected Address findNewBackupOwner(DefaultConsistentHashFactory.Builder builder, Collection<Address> excludes, Address owner)
Copyright © 2022 JBoss by Red Hat. All rights reserved.