Class FilterAllocationDecider
java.lang.Object
org.elasticsearch.cluster.routing.allocation.decider.AllocationDecider
org.elasticsearch.cluster.routing.allocation.decider.FilterAllocationDecider
public class FilterAllocationDecider extends AllocationDecider
This
AllocationDecider control shard allocation by include and
exclude filters via dynamic cluster and index routing settings.
This filter is used to make explicit decision on which nodes certain shard
can / should be allocated. The decision if a shard can be allocated, must not
be allocated or should be allocated is based on either cluster wide dynamic
settings (cluster.routing.allocation.*) or index specific dynamic
settings (index.routing.allocation.*). All of those settings can be
changed at runtime via the cluster or the index update settings API.
required- filters required allocations. If anyrequiredfilters are set the allocation is denied if the index is not in the set ofrequiredto allocate on the filtered nodeinclude- filters "allowed" allocations. If anyincludefilters are set the allocation is denied if the index is not in the set ofincludefilters for the filtered nodeexclude- filters "prohibited" allocations. If anyexcludefilters are set the allocation is denied if the index is in the set ofexcludefilters for the filtered node
-
Field Summary
Fields Modifier and Type Field Description static Setting.AffixSetting<java.lang.String>CLUSTER_ROUTING_EXCLUDE_GROUP_SETTINGstatic Setting.AffixSetting<java.lang.String>CLUSTER_ROUTING_INCLUDE_GROUP_SETTINGstatic Setting.AffixSetting<java.lang.String>CLUSTER_ROUTING_REQUIRE_GROUP_SETTINGstatic java.lang.StringNAME -
Constructor Summary
Constructors Constructor Description FilterAllocationDecider(Settings settings, ClusterSettings clusterSettings) -
Method Summary
Modifier and Type Method Description DecisioncanAllocate(IndexMetaData indexMetaData, RoutingNode node, RoutingAllocation allocation)Returns aDecisionwhether the given shard routing can be allocated at all at this state of theRoutingAllocation.DecisioncanAllocate(ShardRouting shardRouting, RoutingNode node, RoutingAllocation allocation)Returns aDecisionwhether the given shard routing can be allocated on the given node.DecisioncanRemain(ShardRouting shardRouting, RoutingNode node, RoutingAllocation allocation)Returns aDecisionwhether the given shard routing can be remain on the given node.DecisionshouldAutoExpandToNode(IndexMetaData indexMetaData, DiscoveryNode node, RoutingAllocation allocation)Returns aDecisionwhether shards of the given index should be auto-expanded to this node at this state of theRoutingAllocation.Methods inherited from class org.elasticsearch.cluster.routing.allocation.decider.AllocationDecider
canAllocate, canAllocate, canForceAllocatePrimary, canRebalance, canRebalance
-
Field Details
-
NAME
public static final java.lang.String NAME- See Also:
- Constant Field Values
-
CLUSTER_ROUTING_REQUIRE_GROUP_SETTING
-
CLUSTER_ROUTING_INCLUDE_GROUP_SETTING
-
CLUSTER_ROUTING_EXCLUDE_GROUP_SETTING
-
-
Constructor Details
-
Method Details
-
canAllocate
public Decision canAllocate(ShardRouting shardRouting, RoutingNode node, RoutingAllocation allocation)Description copied from class:AllocationDeciderReturns aDecisionwhether the given shard routing can be allocated on the given node. The default isDecision.ALWAYS.- Overrides:
canAllocatein classAllocationDecider
-
canAllocate
public Decision canAllocate(IndexMetaData indexMetaData, RoutingNode node, RoutingAllocation allocation)Description copied from class:AllocationDeciderReturns aDecisionwhether the given shard routing can be allocated at all at this state of theRoutingAllocation. The default isDecision.ALWAYS.- Overrides:
canAllocatein classAllocationDecider
-
canRemain
public Decision canRemain(ShardRouting shardRouting, RoutingNode node, RoutingAllocation allocation)Description copied from class:AllocationDeciderReturns aDecisionwhether the given shard routing can be remain on the given node. The default isDecision.ALWAYS.- Overrides:
canRemainin classAllocationDecider
-
shouldAutoExpandToNode
public Decision shouldAutoExpandToNode(IndexMetaData indexMetaData, DiscoveryNode node, RoutingAllocation allocation)Description copied from class:AllocationDeciderReturns aDecisionwhether shards of the given index should be auto-expanded to this node at this state of theRoutingAllocation. The default isDecision.ALWAYS.- Overrides:
shouldAutoExpandToNodein classAllocationDecider
-