Class FilterAllocationDecider
- java.lang.Object
-
- org.elasticsearch.cluster.routing.allocation.decider.AllocationDecider
-
- org.elasticsearch.cluster.routing.allocation.decider.FilterAllocationDecider
-
public class FilterAllocationDecider extends AllocationDecider
ThisAllocationDecidercontrol 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 (
Note: Cluster settings are applied first and will override index specific settings such that if a shard can be allocated according to the index routing settings it wont be allocated on a node if the cluster specific settings would disallow the allocation. Filters are applied in the following order: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.-
Methods inherited from class org.elasticsearch.cluster.routing.allocation.decider.AllocationDecider
canAllocate, canAllocate, canForceAllocatePrimary, canRebalance, canRebalance
-
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
- See Also:
- Constant Field Values
-
CLUSTER_ROUTING_REQUIRE_GROUP_SETTING
public static final Setting.AffixSetting<java.lang.String> CLUSTER_ROUTING_REQUIRE_GROUP_SETTING
-
CLUSTER_ROUTING_INCLUDE_GROUP_SETTING
public static final Setting.AffixSetting<java.lang.String> CLUSTER_ROUTING_INCLUDE_GROUP_SETTING
-
CLUSTER_ROUTING_EXCLUDE_GROUP_SETTING
public static final Setting.AffixSetting<java.lang.String> CLUSTER_ROUTING_EXCLUDE_GROUP_SETTING
-
-
Constructor Detail
-
FilterAllocationDecider
public FilterAllocationDecider(Settings settings, ClusterSettings clusterSettings)
-
-
Method Detail
-
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
-
-