Top "Circuit-breaker" questions

Circuit breaker is a design pattern in modern software development.

Hystrix Configuration

I am trying to implement hystrix for my application using hystrix-javanica. I have configured hystrix-configuration.properties as below hystrix.command.…

short-circuiting netflix hystrix circuit-breaker fail-fast
Hystrix configuration for circuit breaker in Java

I am writing an application and I want to implement circuit breaker pattern. This is the Hystrix Command class I …

java netflix hystrix circuit-breaker
Hystrix Fallback method execution

Below is my Hystrix command configuration: @HystrixCommand(fallbackMethod = "fall", commandProperties = { @HystrixProperty(name = "circuitBreaker.requestVolumeThreshold", value = "5"), @HystrixProperty(name = "metrics.rollingStats.timeInMilliseconds", …

spring-boot hystrix circuit-breaker
Polly framework CircuitBreakerAsync does not retry if exception occur

I am using Polly framework for transient fault handling. For synchronous operations Polly circuit breaker policy works fine but when …

c# async-await circuit-breaker polly
Programmatically changing Hystrix properties

I have a circuit breaker set up that I would like to change parameters for runtime. Things like threads and …

java hystrix circuit-breaker
Spring-Retry with Circuit breaker

I am trying to leverage both the retry and circuit breaker mechanism of spring-retry. I tried to use both annotations(@…

spring spring-retry circuit-breaker