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

org.apache.camel.model.HystrixConfigurationDefinition Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF 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.apache.camel.model;

import java.util.concurrent.BlockingQueue;
import java.util.concurrent.Future;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;

import org.apache.camel.spi.Metadata;

/**
 * Hystrix Circuit Breaker EIP configuration
 */
@Metadata(label = "eip,routing,circuitbreaker")
@XmlRootElement(name = "hystrixConfiguration")
@XmlAccessorType(XmlAccessType.FIELD)
public class HystrixConfigurationDefinition extends HystrixConfigurationCommon {

    public static final String DEFAULT_GROUP_KEY = "CamelHystrix";

    @XmlTransient
    private HystrixDefinition parent;

    public HystrixConfigurationDefinition() {
    }

    public HystrixConfigurationDefinition(HystrixDefinition parent) {
        this.parent = parent;
    }

    // Fluent API
    // -------------------------------------------------------------------------

   /**
     * Sets the group key to use. The default value is CamelHystrix.
     */
    public HystrixConfigurationDefinition groupKey(String groupKey) {
        setGroupKey(groupKey);
        return this;
    }

    /**
     * Sets the thread pool key to use. Will by default use the same value as groupKey has been configured to use.
     */
    public HystrixConfigurationDefinition threadPoolKey(String threadPoolKey) {
        setThreadPoolKey(threadPoolKey);
        return this;
    }

    /**
     * Whether to use a HystrixCircuitBreaker or not. If false no circuit-breaker logic will be used and all requests permitted.
     * 

* This is similar in effect to circuitBreakerForceClosed() except that continues tracking metrics and knowing whether it * should be open/closed, this property results in not even instantiating a circuit-breaker. */ public HystrixConfigurationDefinition circuitBreakerEnabled(Boolean circuitBreakerEnabled) { setCircuitBreakerEnabled(circuitBreakerEnabled); return this; } /** * Error percentage threshold (as whole number such as 50) at which point the circuit breaker will trip open and reject requests. *

* It will stay tripped for the duration defined in circuitBreakerSleepWindowInMilliseconds; *

* The error percentage this is compared against comes from HystrixCommandMetrics.getHealthCounts(). */ public HystrixConfigurationDefinition circuitBreakerErrorThresholdPercentage(Integer circuitBreakerErrorThresholdPercentage) { setCircuitBreakerErrorThresholdPercentage(circuitBreakerErrorThresholdPercentage); return this; } /** * If true the HystrixCircuitBreaker#allowRequest() will always return true to allow requests regardless of * the error percentage from HystrixCommandMetrics.getHealthCounts(). *

* The circuitBreakerForceOpen() property takes precedence so if it set to true this property does nothing. */ public HystrixConfigurationDefinition circuitBreakerForceClosed(Boolean circuitBreakerForceClosed) { setCircuitBreakerForceClosed(circuitBreakerForceClosed); return this; } /** * If true the HystrixCircuitBreaker.allowRequest() will always return false, causing the circuit to be open (tripped) and reject all requests. *

* This property takes precedence over circuitBreakerForceClosed(); */ public HystrixConfigurationDefinition circuitBreakerForceOpen(Boolean circuitBreakerForceOpen) { setCircuitBreakerForceOpen(circuitBreakerForceOpen); return this; } /** * Minimum number of requests in the metricsRollingStatisticalWindowInMilliseconds() that must exist before the HystrixCircuitBreaker will trip. *

* If below this number the circuit will not trip regardless of error percentage. */ public HystrixConfigurationDefinition circuitBreakerRequestVolumeThreshold(Integer circuitBreakerRequestVolumeThreshold) { setCircuitBreakerRequestVolumeThreshold(circuitBreakerRequestVolumeThreshold); return this; } /** * The time in milliseconds after a HystrixCircuitBreaker trips open that it should wait before trying requests again. */ public HystrixConfigurationDefinition circuitBreakerSleepWindowInMilliseconds(Integer circuitBreakerSleepWindowInMilliseconds) { setCircuitBreakerSleepWindowInMilliseconds(circuitBreakerSleepWindowInMilliseconds); return this; } /** * Number of concurrent requests permitted to HystrixCommand.run(). Requests beyond the concurrent limit will be rejected. *

* Applicable only when executionIsolationStrategy == SEMAPHORE. */ public HystrixConfigurationDefinition executionIsolationSemaphoreMaxConcurrentRequests(Integer executionIsolationSemaphoreMaxConcurrentRequests) { setExecutionIsolationSemaphoreMaxConcurrentRequests(executionIsolationSemaphoreMaxConcurrentRequests); return this; } /** * What isolation strategy HystrixCommand.run() will be executed with. *

* If THREAD then it will be executed on a separate thread and concurrent requests limited by the number of threads in the thread-pool. *

* If SEMAPHORE then it will be executed on the calling thread and concurrent requests limited by the semaphore count. */ public HystrixConfigurationDefinition executionIsolationStrategy(String executionIsolationStrategy) { setExecutionIsolationStrategy(executionIsolationStrategy); return this; } /** * Whether the execution thread should attempt an interrupt (using {@link Future#cancel}) when a thread times out. *

* Applicable only when executionIsolationStrategy() == THREAD. */ public HystrixConfigurationDefinition executionIsolationThreadInterruptOnTimeout(Boolean executionIsolationThreadInterruptOnTimeout) { setExecutionIsolationThreadInterruptOnTimeout(executionIsolationThreadInterruptOnTimeout); return this; } /** * Time in milliseconds at which point the command will timeout and halt execution. *

* If {@link #executionIsolationThreadInterruptOnTimeout} == true and the command is thread-isolated, the executing thread will be interrupted. * If the command is semaphore-isolated and a HystrixObservableCommand, that command will get unsubscribed. */ public HystrixConfigurationDefinition executionTimeoutInMilliseconds(Integer executionTimeoutInMilliseconds) { setExecutionTimeoutInMilliseconds(executionTimeoutInMilliseconds); return this; } /** * Whether the timeout mechanism is enabled for this command */ public HystrixConfigurationDefinition executionTimeoutEnabled(Boolean executionTimeoutEnabled) { setExecutionTimeoutEnabled(executionTimeoutEnabled); return this; } /** * Number of concurrent requests permitted to HystrixCommand.getFallback(). * Requests beyond the concurrent limit will fail-fast and not attempt retrieving a fallback. */ public HystrixConfigurationDefinition fallbackIsolationSemaphoreMaxConcurrentRequests(Integer fallbackIsolationSemaphoreMaxConcurrentRequests) { setFallbackIsolationSemaphoreMaxConcurrentRequests(fallbackIsolationSemaphoreMaxConcurrentRequests); return this; } /** * Whether HystrixCommand.getFallback() should be attempted when failure occurs. */ public HystrixConfigurationDefinition fallbackEnabled(Boolean fallbackEnabled) { setFallbackEnabled(fallbackEnabled); return this; } /** * Time in milliseconds to wait between allowing health snapshots to be taken that calculate success and error * percentages and affect HystrixCircuitBreaker.isOpen() status. *

* On high-volume circuits the continual calculation of error percentage can become CPU intensive thus this controls how often it is calculated. */ public HystrixConfigurationDefinition metricsHealthSnapshotIntervalInMilliseconds(Integer metricsHealthSnapshotIntervalInMilliseconds) { setMetricsHealthSnapshotIntervalInMilliseconds(metricsHealthSnapshotIntervalInMilliseconds); return this; } /** * Maximum number of values stored in each bucket of the rolling percentile. * This is passed into HystrixRollingPercentile inside HystrixCommandMetrics. */ public HystrixConfigurationDefinition metricsRollingPercentileBucketSize(Integer metricsRollingPercentileBucketSize) { setMetricsRollingPercentileBucketSize(metricsRollingPercentileBucketSize); return this; } /** * Whether percentile metrics should be captured using HystrixRollingPercentile inside HystrixCommandMetrics. */ public HystrixConfigurationDefinition metricsRollingPercentileEnabled(Boolean metricsRollingPercentileEnabled) { setMetricsRollingPercentileEnabled(metricsRollingPercentileEnabled); return this; } /** * Duration of percentile rolling window in milliseconds. * This is passed into HystrixRollingPercentile inside HystrixCommandMetrics. */ public HystrixConfigurationDefinition metricsRollingPercentileWindowInMilliseconds(Integer metricsRollingPercentileWindowInMilliseconds) { setMetricsRollingPercentileWindowInMilliseconds(metricsRollingPercentileWindowInMilliseconds); return this; } /** * Number of buckets the rolling percentile window is broken into. * This is passed into HystrixRollingPercentile inside HystrixCommandMetrics. */ public HystrixConfigurationDefinition metricsRollingPercentileWindowBuckets(Integer metricsRollingPercentileWindowBuckets) { setMetricsRollingPercentileWindowBuckets(metricsRollingPercentileWindowBuckets); return this; } /** * This property sets the duration of the statistical rolling window, in milliseconds. This is how long metrics are kept for the thread pool. * * The window is divided into buckets and “rolls” by those increments. */ public HystrixConfigurationDefinition metricsRollingStatisticalWindowInMilliseconds(Integer metricsRollingStatisticalWindowInMilliseconds) { setMetricsRollingStatisticalWindowInMilliseconds(metricsRollingStatisticalWindowInMilliseconds); return this; } /** * Number of buckets the rolling statistical window is broken into. * This is passed into HystrixRollingNumber inside HystrixCommandMetrics. */ public HystrixConfigurationDefinition metricsRollingStatisticalWindowBuckets(Integer metricsRollingStatisticalWindowBuckets) { setMetricsRollingStatisticalWindowBuckets(metricsRollingStatisticalWindowBuckets); return this; } /** * Whether HystrixCommand execution and events should be logged to HystrixRequestLog. */ public HystrixConfigurationDefinition requestLogEnabled(Boolean requestLogEnabled) { setRequestLogEnabled(requestLogEnabled); return this; } /** * Core thread-pool size that gets passed to {@link java.util.concurrent.ThreadPoolExecutor#setCorePoolSize(int)} */ public HystrixConfigurationDefinition corePoolSize(Integer corePoolSize) { setCorePoolSize(corePoolSize); return this; } /** * Keep-alive time in minutes that gets passed to {@link ThreadPoolExecutor#setKeepAliveTime(long, TimeUnit)} */ public HystrixConfigurationDefinition keepAliveTime(Integer keepAliveTime) { setKeepAliveTime(keepAliveTime); return this; } /** * Max queue size that gets passed to {@link BlockingQueue} in HystrixConcurrencyStrategy.getBlockingQueue(int) * * This should only affect the instantiation of a threadpool - it is not eliglible to change a queue size on the fly. * For that, use queueSizeRejectionThreshold(). */ public HystrixConfigurationDefinition maxQueueSize(Integer maxQueueSize) { setMaxQueueSize(maxQueueSize); return this; } /** * Maximum thread-pool size that gets passed to {@link ThreadPoolExecutor#setMaximumPoolSize(int)}. * This is the maximum amount of concurrency that can be supported without starting to reject HystrixCommands. * Please note that this setting only takes effect if you also set allowMaximumSizeToDivergeFromCoreSize */ public HystrixConfigurationDefinition maximumSize(Integer maximumSize) { setMaximumSize(maximumSize); return this; } /** * Queue size rejection threshold is an artificial "max" size at which rejections will occur even * if {@link #maxQueueSize} has not been reached. This is done because the {@link #maxQueueSize} * of a {@link BlockingQueue} can not be dynamically changed and we want to support dynamically * changing the queue size that affects rejections. *

* This is used by HystrixCommand when queuing a thread for execution. */ public HystrixConfigurationDefinition queueSizeRejectionThreshold(Integer queueSizeRejectionThreshold) { setQueueSizeRejectionThreshold(queueSizeRejectionThreshold); return this; } /** * Duration of statistical rolling window in milliseconds. * This is passed into HystrixRollingNumber inside each HystrixThreadPoolMetrics instance. */ public HystrixConfigurationDefinition threadPoolRollingNumberStatisticalWindowInMilliseconds(Integer threadPoolRollingNumberStatisticalWindowInMilliseconds) { setThreadPoolRollingNumberStatisticalWindowInMilliseconds(threadPoolRollingNumberStatisticalWindowInMilliseconds); return this; } /** * Number of buckets the rolling statistical window is broken into. * This is passed into HystrixRollingNumber inside each HystrixThreadPoolMetrics instance. */ public HystrixConfigurationDefinition threadPoolRollingNumberStatisticalWindowBuckets(Integer threadPoolRollingNumberStatisticalWindowBuckets) { setThreadPoolRollingNumberStatisticalWindowBuckets(threadPoolRollingNumberStatisticalWindowBuckets); return this; } /** * Allows the configuration for maximumSize to take effect. That value can then be equal to, or higher, than coreSize */ public HystrixConfigurationDefinition allowMaximumSizeToDivergeFromCoreSize(Boolean allowMaximumSizeToDivergeFromCoreSize) { setAllowMaximumSizeToDivergeFromCoreSize(allowMaximumSizeToDivergeFromCoreSize); return this; } /** * End of configuration */ public HystrixDefinition end() { return parent; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy