HystrixConfigurationDefinition |
HystrixConfigurationDefinition.allowMaximumSizeToDivergeFromCoreSize(boolean allowMaximumSizeToDivergeFromCoreSize) |
Deprecated.
Allows the configuration for maximumSize to take effect.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.circuitBreakerEnabled(boolean circuitBreakerEnabled) |
Deprecated.
Whether to use a HystrixCircuitBreaker or not.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.circuitBreakerErrorThresholdPercentage(int circuitBreakerErrorThresholdPercentage) |
Deprecated.
Error percentage threshold (as whole number such as 50) at which point the circuit breaker will trip open and
reject requests.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.circuitBreakerForceClosed(boolean circuitBreakerForceClosed) |
Deprecated.
If true the HystrixCircuitBreaker.allowRequest() will always return true to allow requests regardless of the
error percentage from HystrixCommandMetrics.getHealthCounts().
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.circuitBreakerForceOpen(boolean circuitBreakerForceOpen) |
Deprecated.
If true the HystrixCircuitBreaker.allowRequest() will always return false, causing the circuit to be open
(tripped) and reject all requests.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.circuitBreakerRequestVolumeThreshold(int circuitBreakerRequestVolumeThreshold) |
Deprecated.
Minimum number of requests in the metricsRollingStatisticalWindowInMilliseconds() that must exist before the
HystrixCircuitBreaker will trip.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.circuitBreakerSleepWindowInMilliseconds(int circuitBreakerSleepWindowInMilliseconds) |
Deprecated.
The time in milliseconds after a HystrixCircuitBreaker trips open that it should wait before trying requests
again.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.corePoolSize(int corePoolSize) |
Deprecated.
Core thread-pool size.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.executionIsolationSemaphoreMaxConcurrentRequests(int executionIsolationSemaphoreMaxConcurrentRequests) |
Deprecated.
Number of concurrent requests permitted to HystrixCommand.run().
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.executionIsolationStrategy(String executionIsolationStrategy) |
Deprecated.
What isolation strategy HystrixCommand.run() will be executed with.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.executionIsolationThreadInterruptOnTimeout(boolean executionIsolationThreadInterruptOnTimeout) |
Deprecated.
Whether the execution thread should attempt an interrupt (using Future cancel) when a thread times out.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.executionTimeoutEnabled(boolean executionTimeoutEnabled) |
Deprecated.
Whether the timeout mechanism is enabled for this command
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.executionTimeoutInMilliseconds(int executionTimeoutInMilliseconds) |
Deprecated.
Time in milliseconds at which point the command will timeout and halt execution.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.fallbackEnabled(boolean fallbackEnabled) |
Deprecated.
Whether HystrixCommand.getFallback() should be attempted when failure occurs.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.fallbackIsolationSemaphoreMaxConcurrentRequests(int fallbackIsolationSemaphoreMaxConcurrentRequests) |
Deprecated.
Number of concurrent requests permitted to HystrixCommand.getFallback().
|
HystrixConfigurationDefinition |
CircuitBreakerDefinition.getHystrixConfiguration() |
Deprecated.
|
HystrixConfigurationDefinition |
Model.getHystrixConfiguration(String id) |
Gets the Hystrix configuration by the given name.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.groupKey(String groupKey) |
Deprecated.
Sets the group key to use.
|
HystrixConfigurationDefinition |
CircuitBreakerDefinition.hystrixConfiguration() |
Deprecated.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.keepAliveTime(int keepAliveTime) |
Deprecated.
Keep-alive time in minutes.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.maximumSize(int maximumSize) |
Deprecated.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.maxQueueSize(int maxQueueSize) |
Deprecated.
Max queue size.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsHealthSnapshotIntervalInMilliseconds(int metricsHealthSnapshotIntervalInMilliseconds) |
Deprecated.
Time in milliseconds to wait between allowing health snapshots to be taken that calculate success and error
percentages and affect HystrixCircuitBreaker.isOpen() status.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsRollingPercentileBucketSize(int metricsRollingPercentileBucketSize) |
Deprecated.
Maximum number of values stored in each bucket of the rolling percentile.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsRollingPercentileEnabled(boolean metricsRollingPercentileEnabled) |
Deprecated.
Whether percentile metrics should be captured using HystrixRollingPercentile inside HystrixCommandMetrics.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsRollingPercentileWindowBuckets(int metricsRollingPercentileWindowBuckets) |
Deprecated.
Number of buckets the rolling percentile window is broken into.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsRollingPercentileWindowInMilliseconds(int metricsRollingPercentileWindowInMilliseconds) |
Deprecated.
Duration of percentile rolling window in milliseconds.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsRollingStatisticalWindowBuckets(int metricsRollingStatisticalWindowBuckets) |
Deprecated.
Number of buckets the rolling statistical window is broken into.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsRollingStatisticalWindowInMilliseconds(int metricsRollingStatisticalWindowInMilliseconds) |
Deprecated.
This property sets the duration of the statistical rolling window, in milliseconds.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.queueSizeRejectionThreshold(int queueSizeRejectionThreshold) |
Deprecated.
Queue size rejection threshold is an artificial max size at which rejections will occur even if maxQueueSize has
not been reached.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.requestLogEnabled(boolean requestLogEnabled) |
Deprecated.
Whether HystrixCommand execution and events should be logged to HystrixRequestLog.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.threadPoolKey(String threadPoolKey) |
Deprecated.
Sets the thread pool key to use.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.threadPoolRollingNumberStatisticalWindowBuckets(int threadPoolRollingNumberStatisticalWindowBuckets) |
Deprecated.
Number of buckets the rolling statistical window is broken into.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.threadPoolRollingNumberStatisticalWindowInMilliseconds(int threadPoolRollingNumberStatisticalWindowInMilliseconds) |
Deprecated.
Duration of statistical rolling window in milliseconds.
|