circuit-breaker Questions

8

Solved

I'm trying hystrix fallback method. On localhost:8082, customer-service is running which returns name of the customer. If the customer-service is down, fallback method should invoke. But it is not...
Otiliaotina asked 18/12, 2016 at 16:22

2

Solved

I have an application where we communicate with hundreds of HTTPs endpoints. The application is a proxy of sorts. When testing with polly, I've noticed that if one endpoint, say api.endpoint1.com f...
Etesian asked 17/10, 2019 at 17:51

3

I am using Polly library for transient fault handling. For synchronous operations Polly circuit breaker policy works fine but when I created its async version it does not retries the execution. Kin...
Grout asked 4/4, 2016 at 9:17

1

Having a circuit breaker with Spring Boot for external calls (e.g. HTTP) is a common pattern that is rather easy to put into place, for example with resilience4j. I cannot find any information abou...
Javierjavler asked 26/3, 2022 at 9:44

2

Solved

When I initially learn about spring boot, I've learnt about spring cloud netflix hystrix as a circuit breaker. There were bunch of options such as multiple application properties and annotation bas...

1

I have the following configuration with which I create circuit breakers at runtime: @Configuration public class CircuitBreakerConfiguration { public final static String DEFAULT_CIRCUIT_BREAKER_R...
Manganate asked 17/8, 2020 at 0:46

1

Solved

I am new to circuit breakers and have recently implemented them in one of my services. I was going through the documentation Resilience 4J official documentation and found two properties that we ca...
Archiepiscopal asked 13/2, 2022 at 7:15

2

I am trying to use Resilience4j features. My use case is to combine the 3 modules: circuitbreaker retry timelimiter I want to combine all these modules and execute the method only once. Code Here...

2

Solved

I coded a resilience strategy based on retry, and a circuit-breaker policies. Now working, but with a issue in its behavior. I noticed when the circuit-breaker is on half-open, and the onBreak() ev...
Impart asked 12/10, 2021 at 3:50

1

I have a service which is using Hystrix circuit breaker pattern and it calls 3rd party service. With the help of @HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds"...
Shirlshirlee asked 17/4, 2020 at 16:18

1

what is the difference? 1. --deployment-configuration "deploymentCircuitBreaker={enable=true,rollback=false}" --deployment-configuration "deploymentCircuitBreaker={enable=false,r...
Selfsupport asked 30/3, 2021 at 23:49

2

Solved

I'm just trying out the Polly CircuitBreakerAsync and it's not working as I expect. What am I doing wrong here? I expect the code below to complete and say the circuit is still closed. using Polly;...
Opinion asked 16/11, 2020 at 22:10

1

Solved

Would like to ask a question about two technologies. We first started with an application that has to call other third parties rest API, hence, we used the Webflux WebClient in our SpringBoot Webfl...

1

I'm building an API that will act as a proxy to n underlying API's that all do the same thing. It will use circuit breaker pattern to determine when one of the underlying API's is unavailable, ther...

2

Solved

Can we use both together in Spring Boot during the development of microservice?
Antilog asked 2/4, 2020 at 11:26

3

Is there a way to implement a circuit breaker pattern with Spring Kafka based consumer . I am wondering while implementing my Spring kafka consumer is it possible to stop consuming records if there...
Genista asked 2/1, 2018 at 11:16

1

Solved

Circuit breaker doesn't trip on httpConsecutiveErrors: 1 (for 500 response). All requests pass through and give a 500 instead . Circuit breaker should trip and should return 503(Service Unavailable...
Difference asked 31/5, 2018 at 11:5

5

Solved

I have a circuit breaker set up that I would like to change parameters for runtime. Things like threads and timeout needs to be tuned at customer site. I create a HystrixCommandProperties.Setter l...
Landon asked 18/10, 2016 at 13:16

1

I'm looking for to utilize a more mainstream and language-agnostic API proxy/wrapper for implementing common patterns (eg, circuit breaker, health checks, etc.) and tracking stats for API calls. H...
Kwok asked 22/11, 2018 at 0:19

3

Solved

So sorry if this question is not fit for SO. But I tried looking lot for answer. I was studying Circuit Breaker design pattern, As I understand its used for making you API fault tolerance. Now wh...
Mori asked 15/9, 2018 at 10:15

3

Solved

I would like to programmatically force a circuit breaker to open for a particular group. I thought I might be able to do that by setting the config on a command in a group to force open, and runnin...
Joviality asked 20/3, 2015 at 11:37

1

Solved

I have a query, IGetHamburgers, that calls an external API. I've registered the implementation of IGetHamburgers in my DI container as a Singleton. Im using Polly as a Circuitbreaker, if two reques...
Vociferation asked 19/6, 2017 at 19:55

3

Solved

Without Future, that's how I combine all smaller Seq into one big Seq with a flatmap category.getCategoryUrlKey(id: Int):Seq[Meta] // main method val appDomains: Seq[Int] val categories:Seq[Meta]...
Antisepsis asked 16/6, 2017 at 9:38

1

Solved

I run a call to an endpoint that is off, however the hystrix does not execute the fallback method, and throws an exception: java.util.concurrent.ExecutionException: org.springframework.web.client....
Indican asked 6/6, 2017 at 13:36

2

Solved

I am trying to implement hystrix for my application using hystrix-javanica. I have configured hystrix-configuration.properties as below hystrix.command.default.execution.isolation.strategy=SEMAPH...
Perineurium asked 22/7, 2016 at 10:33

© 2022 - 2024 — McMap. All rights reserved.