Class AllocationDecider
java.lang.Object
org.elasticsearch.cluster.routing.allocation.decider.AllocationDecider
- Direct Known Subclasses:
AllocationDeciders
,AwarenessAllocationDecider
,ClusterRebalanceAllocationDecider
,ConcurrentRebalanceAllocationDecider
,DiskThresholdDecider
,EnableAllocationDecider
,FilterAllocationDecider
,MaxRetryAllocationDecider
,NodeShutdownAllocationDecider
,NodeVersionAllocationDecider
,RebalanceOnlyWhenActiveAllocationDecider
,ReplicaAfterPrimaryActiveAllocationDecider
,ResizeAllocationDecider
,RestoreInProgressAllocationDecider
,SameShardAllocationDecider
,ShardsLimitAllocationDecider
,SnapshotInProgressAllocationDecider
,ThrottlingAllocationDecider
AllocationDecider
is an abstract base class that allows to make
dynamic cluster- or index-wide shard allocation decisions on a per-node
basis.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncanAllocate(IndexMetadata indexMetadata, RoutingNode node, RoutingAllocation allocation)
Returns aDecision
whether the given shard routing can be allocated at all at this state of theRoutingAllocation
.canAllocate(ShardRouting shardRouting, RoutingAllocation allocation)
Returns aDecision
whether the given shard routing can be allocated at all at this state of theRoutingAllocation
.canAllocate(ShardRouting shardRouting, RoutingNode node, RoutingAllocation allocation)
Returns aDecision
whether the given shard routing can be allocated on the given node.canForceAllocatePrimary(ShardRouting shardRouting, RoutingNode node, RoutingAllocation allocation)
Returns aDecision
whether the given primary shard can be forcibly allocated on the given node.canRebalance(RoutingAllocation allocation)
Returns aDecision
whether the cluster can execute re-balanced operations at all.canRebalance(ShardRouting shardRouting, RoutingAllocation allocation)
Returns aDecision
whether the given shard routing can be re-balanced to the given allocation.canRemain(ShardRouting shardRouting, RoutingNode node, RoutingAllocation allocation)
Returns aDecision
whether the given shard routing can be remain on the given node.shouldAutoExpandToNode(IndexMetadata indexMetadata, DiscoveryNode node, RoutingAllocation allocation)
Returns aDecision
whether shards of the given index should be auto-expanded to this node at this state of theRoutingAllocation
.
-
Constructor Details
-
AllocationDecider
public AllocationDecider()
-
-
Method Details
-
canRebalance
Returns aDecision
whether the given shard routing can be re-balanced to the given allocation. The default isDecision.ALWAYS
. -
canAllocate
public Decision canAllocate(ShardRouting shardRouting, RoutingNode node, RoutingAllocation allocation)Returns aDecision
whether the given shard routing can be allocated on the given node. The default isDecision.ALWAYS
. -
canRemain
public Decision canRemain(ShardRouting shardRouting, RoutingNode node, RoutingAllocation allocation)Returns aDecision
whether the given shard routing can be remain on the given node. The default isDecision.ALWAYS
. -
canAllocate
Returns aDecision
whether the given shard routing can be allocated at all at this state of theRoutingAllocation
. The default isDecision.ALWAYS
. -
canAllocate
public Decision canAllocate(IndexMetadata indexMetadata, RoutingNode node, RoutingAllocation allocation)Returns aDecision
whether the given shard routing can be allocated at all at this state of theRoutingAllocation
. The default isDecision.ALWAYS
. -
shouldAutoExpandToNode
public Decision shouldAutoExpandToNode(IndexMetadata indexMetadata, DiscoveryNode node, RoutingAllocation allocation)Returns aDecision
whether shards of the given index should be auto-expanded to this node at this state of theRoutingAllocation
. The default isDecision.ALWAYS
. -
canRebalance
Returns aDecision
whether the cluster can execute re-balanced operations at all.Decision.ALWAYS
. -
canForceAllocatePrimary
public Decision canForceAllocatePrimary(ShardRouting shardRouting, RoutingNode node, RoutingAllocation allocation)Returns aDecision
whether the given primary shard can be forcibly allocated on the given node. This method should only be called for unassigned primary shards where the node has a shard copy on disk. Note: all implementations that override this behavior should take into account the results ofcanAllocate(ShardRouting, RoutingNode, RoutingAllocation)
before making a decision on force allocation, because force allocation should only be considered if all deciders returnDecision.NO
.
-