/* * Licensed to ElasticSearch and Shay Banon under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. ElasticSearch licenses this * file to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.elasticsearch.cluster.routing.allocation.decider; import com.google.common.collect.ImmutableSet; import org.elasticsearch.cluster.routing.RoutingNode; import org.elasticsearch.cluster.routing.ShardRouting; import org.elasticsearch.cluster.routing.allocation.RoutingAllocation; import org.elasticsearch.common.inject.Inject; import org.elasticsearch.common.settings.Settings; import org.elasticsearch.node.settings.NodeSettingsService; import java.util.Set; /** * Holds several {@link AllocationDecider}s and combines them into a single allocation decision. */ public class ServerAllocationDeciders extends AllocationDeciders { private final Settings settings; private final AllocationDecider[] allocations; public ServerAllocationDeciders(Settings settings, NodeSettingsService nodeSettingsService) { this(settings, ImmutableSet.<AllocationDecider>builder() .add(new SameShardAllocationDecider(settings)) .add(new FilterAllocationDecider(settings, nodeSettingsService)) .add(new ReplicaAfterPrimaryActiveAllocationDecider(settings)) .add(new ThrottlingAllocationDecider(settings, nodeSettingsService)) .add(new RebalanceOnlyWhenActiveAllocationDecider(settings)) .add(new ClusterRebalanceAllocationDecider(settings)) .add(new ConcurrentRebalanceAllocationDecider(settings, nodeSettingsService)) .add(new DisableAllocationDecider(settings, nodeSettingsService)) .add(new AwarenessAllocationDecider(settings, nodeSettingsService)) .add(new ShardsLimitAllocationDecider(settings)) .build() ); } @Inject public ServerAllocationDeciders(Settings settings, Set<AllocationDecider> allocations) { this.settings = settings; this.allocations = allocations.toArray(new AllocationDecider[allocations.size()]); } @Override public boolean canRebalance(ShardRouting shardRouting, RoutingAllocation allocation) { for (AllocationDecider allocation1 : allocations) { if (!allocation1.canRebalance(shardRouting, allocation)) { return false; } } return true; } @Override public Decision canAllocate(ShardRouting shardRouting, RoutingNode node, RoutingAllocation allocation) { Decision ret = Decision.YES; // first, check if its in the ignored, if so, return NO if (allocation.shouldIgnoreShardForNode(shardRouting.shardId(), node.nodeId())) { return Decision.NO; } // now, go over the registered allocations for (AllocationDecider allocation1 : allocations) { Decision decision = allocation1.canAllocate(shardRouting, node, allocation); if (decision == Decision.NO) { return Decision.NO; } else if (decision == Decision.THROTTLE) { ret = Decision.THROTTLE; } } return ret; } @Override public boolean canRemain(ShardRouting shardRouting, RoutingNode node, RoutingAllocation allocation) { if (allocation.shouldIgnoreShardForNode(shardRouting.shardId(), node.nodeId())) { return false; } for (AllocationDecider allocation1 : allocations) { if (!allocation1.canRemain(shardRouting, node, allocation)) { return false; } } return true; } }