All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.cluster.routing.allocation.decider.SameShardAllocationDecider Maven / Gradle / Ivy

There is a newer version: 8.14.1
Show newest version
/*
 * 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 org.elasticsearch.cluster.routing.MutableShardRouting;
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 java.util.List;

/**
 * An allocation decider that prevents the more than prevents multiple instances
 * of the same shard to be allocated on a single host. The cluster setting can
 * be modified in real-time by updating the {@value #SAME_HOST_SETTING} value of
 * cluster setting API. The default is false.
 * 

* Note: this setting only applies if multiple nodes are started on the same * host. Multiple allocations of the same shard on the same node are * not allowed independent of this setting. *

*/ public class SameShardAllocationDecider extends AllocationDecider { public static final String SAME_HOST_SETTING = "cluster.routing.allocation.same_shard.host"; private final boolean sameHost; @Inject public SameShardAllocationDecider(Settings settings) { super(settings); this.sameHost = settings.getAsBoolean(SAME_HOST_SETTING, false); } @Override public Decision canAllocate(ShardRouting shardRouting, RoutingNode node, RoutingAllocation allocation) { List shards = node.shards(); for (int i = 0; i < shards.size(); i++) { // we do not allow for two shards of the same shard id to exists on the same node if (shards.get(i).shardId().equals(shardRouting.shardId())) { return Decision.NO; } } if (sameHost) { if (node.node() != null) { for (RoutingNode checkNode : allocation.routingNodes()) { if (checkNode.node() == null) { continue; } // check if its on the same host as the one we want to allocate to if (!checkNode.node().address().sameHost(node.node().address())) { continue; } shards = checkNode.shards(); for (int i = 0; i < shards.size(); i++) { if (shards.get(i).shardId().equals(shardRouting.shardId())) { return Decision.NO; } } } } } return Decision.YES; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy