/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * Licensed to Elasticsearch 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. */ /* * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ package org.opensearch.cluster.routing; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.message.ParameterizedMessage; import org.opensearch.OpenSearchException; import org.opensearch.action.ActionListener; import org.opensearch.cluster.ClusterState; import org.opensearch.cluster.ClusterStateUpdateTask; import org.opensearch.cluster.NotClusterManagerException; import org.opensearch.cluster.service.ClusterService; import org.opensearch.common.Nullable; import org.opensearch.common.Priority; import java.util.ArrayList; import java.util.List; import java.util.function.BiFunction; /** * A {@link BatchedRerouteService} is a {@link RerouteService} that batches together reroute requests to avoid unnecessary extra reroutes. * This component only does meaningful work on the elected cluster-manager node. Reroute requests will fail with a {@link NotClusterManagerException} on * other nodes. * * @opensearch.internal */ public class BatchedRerouteService implements RerouteService { private static final Logger logger = LogManager.getLogger(BatchedRerouteService.class); private static final String CLUSTER_UPDATE_TASK_SOURCE = "cluster_reroute"; private final ClusterService clusterService; private final BiFunction reroute; private final Object mutex = new Object(); @Nullable // null if no reroute is currently pending private List> pendingRerouteListeners; private Priority pendingTaskPriority = Priority.LANGUID; /** * @param reroute Function that computes the updated cluster state after it has been rerouted. */ public BatchedRerouteService(ClusterService clusterService, BiFunction reroute) { this.clusterService = clusterService; this.reroute = reroute; } /** * Initiates a reroute. */ @Override public final void reroute(String reason, Priority priority, ActionListener listener) { final List> currentListeners; synchronized (mutex) { if (pendingRerouteListeners != null) { if (priority.sameOrAfter(pendingTaskPriority)) { logger.trace( "already has pending reroute at priority [{}], adding [{}] with priority [{}] to batch", pendingTaskPriority, reason, priority ); pendingRerouteListeners.add(listener); return; } else { logger.trace( "already has pending reroute at priority [{}], promoting batch to [{}] and adding [{}]", pendingTaskPriority, priority, reason ); currentListeners = new ArrayList<>(1 + pendingRerouteListeners.size()); currentListeners.add(listener); currentListeners.addAll(pendingRerouteListeners); pendingRerouteListeners.clear(); pendingRerouteListeners = currentListeners; pendingTaskPriority = priority; } } else { logger.trace("no pending reroute, scheduling reroute [{}] at priority [{}]", reason, priority); currentListeners = new ArrayList<>(1); currentListeners.add(listener); pendingRerouteListeners = currentListeners; pendingTaskPriority = priority; } } try { clusterService.submitStateUpdateTask(CLUSTER_UPDATE_TASK_SOURCE + "(" + reason + ")", new ClusterStateUpdateTask(priority) { @Override public ClusterState execute(ClusterState currentState) { final boolean currentListenersArePending; synchronized (mutex) { assert currentListeners.isEmpty() == (pendingRerouteListeners != currentListeners) : "currentListeners=" + currentListeners + ", pendingRerouteListeners=" + pendingRerouteListeners; currentListenersArePending = pendingRerouteListeners == currentListeners; if (currentListenersArePending) { pendingRerouteListeners = null; } } if (currentListenersArePending) { logger.trace("performing batched reroute [{}]", reason); return reroute.apply(currentState, reason); } else { logger.trace("batched reroute [{}] was promoted", reason); return currentState; } } @Override public void onNoLongerClusterManager(String source) { synchronized (mutex) { if (pendingRerouteListeners == currentListeners) { pendingRerouteListeners = null; } } ActionListener.onFailure( currentListeners, new NotClusterManagerException("delayed reroute [" + reason + "] cancelled") ); // no big deal, the new cluster-manager will reroute again } @Override public void onFailure(String source, Exception e) { synchronized (mutex) { if (pendingRerouteListeners == currentListeners) { pendingRerouteListeners = null; } } final ClusterState state = clusterService.state(); if (logger.isTraceEnabled()) { logger.error( () -> new ParameterizedMessage("unexpected failure during [{}], current state:\n{}", source, state), e ); } else { logger.error( () -> new ParameterizedMessage( "unexpected failure during [{}], current state version [{}]", source, state.version() ), e ); } ActionListener.onFailure(currentListeners, new OpenSearchException("delayed reroute [" + reason + "] failed", e)); } @Override public void clusterStateProcessed(String source, ClusterState oldState, ClusterState newState) { ActionListener.onResponse(currentListeners, newState); } }); } catch (Exception e) { synchronized (mutex) { assert currentListeners.isEmpty() == (pendingRerouteListeners != currentListeners); if (pendingRerouteListeners == currentListeners) { pendingRerouteListeners = null; } } ClusterState state = clusterService.state(); logger.warn(() -> new ParameterizedMessage("failed to reroute routing table, current state:\n{}", state), e); ActionListener.onFailure( currentListeners, new OpenSearchException("delayed reroute [" + reason + "] could not be submitted", e) ); } } }