org.opensearch.plugins.CircuitBreakerPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opensearch Show documentation
Show all versions of opensearch Show documentation
OpenSearch subproject :server
/*
* 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.plugins;
import org.opensearch.common.settings.Settings;
import org.opensearch.core.common.breaker.CircuitBreaker;
import org.opensearch.core.indices.breaker.CircuitBreakerService;
import org.opensearch.indices.breaker.BreakerSettings;
/**
* An extension point for {@link Plugin} implementations to add custom circuit breakers
*
* @opensearch.api
*/
public interface CircuitBreakerPlugin {
/**
* Each of the factory functions are passed to the configured {@link CircuitBreakerService}.
*
* The service then constructs a {@link CircuitBreaker} given the resulting {@link BreakerSettings}.
*
* Custom circuit breakers settings can be found in {@link BreakerSettings}.
* See:
* - limit (example: `breaker.foo.limit`) {@link BreakerSettings#CIRCUIT_BREAKER_LIMIT_SETTING}
* - overhead (example: `breaker.foo.overhead`) {@link BreakerSettings#CIRCUIT_BREAKER_OVERHEAD_SETTING}
* - type (example: `breaker.foo.type`) {@link BreakerSettings#CIRCUIT_BREAKER_TYPE}
*
* The `limit` and `overhead` settings will be dynamically updated in the circuit breaker service iff a {@link BreakerSettings}
* object with the same name is provided at node startup.
*/
BreakerSettings getCircuitBreaker(Settings settings);
/**
* The passed {@link CircuitBreaker} object is the same one that was constructed by the {@link BreakerSettings}
* provided by {@link CircuitBreakerPlugin#getCircuitBreaker(Settings)}.
*
* This reference should never change throughout the lifetime of the node.
*
* @param circuitBreaker The constructed {@link CircuitBreaker} object from the {@link BreakerSettings}
* provided by {@link CircuitBreakerPlugin#getCircuitBreaker(Settings)}
*/
void setCircuitBreaker(CircuitBreaker circuitBreaker);
}