resilience4j Questions
2
Following the getting started guide (https://resilience4j.readme.io/docs/getting-started-3) and the demo project (https://github.com/resilience4j/resilience4j-spring-boot2-demo) I wanted to test it...
Jealousy asked 20/5, 2020 at 15:32
2
Solved
I have a spring boot app, which uses resilience4j AOP-based @CircuitBreakers.
Now I would like to make the circuit breakers' information available in the /actuator/health endpoint, but I'm not seei...
Banana asked 4/3, 2020 at 14:33
2
Solved
I'm using io.github.resilience4j. Everything is working fine with 1.6.1 version but when upgraded to 1.7.1 version my application is not running. Please find my code changes below.
My pom.xml depen...
Donegal asked 11/8, 2021 at 12:24
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...
Evocation asked 5/1, 2022 at 4:56
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...
Immortality asked 13/2, 2020 at 20:59
1
Solved
I'm using Resilience4J in a Spring Boot project to make a call to a REST client like so:
@Retry(name = "customerService")
public Customer getCustomer(String customerNumber) {
restTemplat...
Frau asked 1/11, 2021 at 5:5
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
2
Solved
Application is not starting however I only have added one version of resilience4j
<dependency>
<groupId>io.github.resilience4j</groupId>
<artifactId>resilience4j-spring-...
Petronia asked 8/3, 2020 at 12:11
3
Solved
Is it possible to log retries attempts on client side with resilience4j please?
Maybe via some kind of configuration, or settings.
Currently, I am using resilience4j with Spring boot Webflux annota...
Pseudaxis asked 25/10, 2020 at 2:56
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...
Somehow asked 24/9, 2020 at 17:5
2
Solved
I have added the following dependency to my Spring Boot project
implementation 'io.github.resilience4j:resilience4j-spring-boot2:0.14.1'
When a circuit breaker opens, I get the following respons...
Going asked 23/4, 2019 at 13:47
1
as Netflix put Hystrix officially into maintenance mode (https://github.com/Netflix/Hystrix#hystrix-status), I started to look for alternatives. There are nice libraries like resilience4j when it c...
Jovita asked 18/6, 2019 at 11:31
2
Solved
I implemented resilience4j in my project using the Spring Boot2 starter (https://resilience4j.readme.io/docs/getting-started-3).
I annotated a method with @CircuitBreaker that uses http client for...
Frumenty asked 30/3, 2020 at 13:28
1
Given Hystrix going into mainentance mode, I've been working on migrating a (rather large) codebase to Resilience4j.
I make heavy use of the following pattern with Hystrix:
new HystrixCommand<...
Guzel asked 17/1, 2019 at 15:16
1
© 2022 - 2025 — McMap. All rights reserved.