Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
57 views

System is on two site, facing issues on resiliency so using circuit breaker. When I am on close state then sending message to the primary site on call back on secondary site both are using different ...
Anonymous's user avatar
2 votes
0 answers
102 views

I have a simple microservices based app. It has 3 microservices. Movie-Catalog-Service, Ratings-Data-Service, Movie-Info-Service. Movie-Catalog-Service is dependent on Ratings-Data-Service and Movie-...
Shri's user avatar
  • 191
3 votes
1 answer
1k views

We are seeing an issue with resilience4j circuit breaker after a recent upgrade of Spring Boot & Cloud dependencies. We upgraded the following below: groupId artifactId old version upgraded ...
Subhash 's user avatar
1 vote
0 answers
60 views

Im facing an issue with the Resilience4J circuit breaker implementation. I have written the following test case to test the functionality of the circuit breaker implementation with resilience4j-spring-...
Lasal Hettiarachchi's user avatar
2 votes
1 answer
94 views

Do HTTP policies instances are shared when I create named HTTP client in each request using IHttpClientFactory? I am using the IHttpClientFactory to create a named-http-client per request: var ...
Omer's user avatar
  • 83
-1 votes
1 answer
180 views

We have a vendor that goes down a lot. We no longer want the circuit to break when they pass us back 500 errors, etc.. We just want the circuit to break when there is a Timeout Exception. IAsyncPolicy&...
Gabriel Whitehair's user avatar
0 votes
0 answers
110 views

I am using this library to implement Circuit breaker in a Kotlin app using Quarkus and the package says to use fixed values, as for example (it's just one that you can find on github): @CircuitBreaker(...
Juan Antonio's user avatar
  • 2,663
-1 votes
1 answer
72 views

HttpConsentCircuitBreakerPolicy = HttpPolicyExtensions .HandleTransientHttpError() .Or<TimeoutRejectedException>() .CircuitBreakerAsync(3,TimeSpan.FromSeconds(30), OnBreak, OnReset); ...
Elvis Skensberg's user avatar
2 votes
1 answer
480 views

Our application is based on Spring Boot 3.2 and runs on JDK 21. We've gone all-in on virtual threads, and can't sing their praises enough. Tomcat handles all requests with a virtual thread pool, our ...
psyklopz's user avatar
  • 2,401
1 vote
1 answer
2k views

I am learning microservices and trying to implement circuit breaker pattern in one of my microservices. At the beginning i wanted to pick Netflix Hystrix library but after some googling i found out ...
Дмитрий's user avatar
1 vote
0 answers
269 views

I have circuitbreaker implemented in my springboot application. I have used following dependency: implementation 'org.springframework.cloud:spring-cloud-starter-circuitbreaker-resilience4j' And I ...
arqam's user avatar
  • 3,809
1 vote
1 answer
66 views

We have a set of connectors with external providers using REST APIs. We use HttpClient and Polly to make resilient queries to the endpoints. One of the providers is actually an intermediary between ...
ferarias's user avatar
  • 343
1 vote
0 answers
26 views

I have below implementation this service is responsible for sending data to third party service and i want to control how many data we can send per second lets suppose i have 10000 records in each ...
L.r. Sharma's user avatar
1 vote
1 answer
443 views

Up until now, I used Polly's standard CircuitBreaker policy like this: int retryCount = 2; PolicyBuilder policyBuilder = Policy .HandleInner<WebException>() .Or<WebException>() ...
user2727133's user avatar
1 vote
0 answers
304 views

I have a problem related to conflict between circuit breaker of resilience4j and open feign error decoder. I have implemented both of these but in case of any runtime exception, the code flow never ...
Ankit Shrivastav's user avatar
0 votes
0 answers
461 views

My project state: Java 17 Spring Boot 3.2.0 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-circuitbreaker-resilience4j</...
ali's user avatar
  • 61
-1 votes
1 answer
1k views

I'm using RestClient for upstream communication and would like to add some enhancements to make it more robust. Here's my current setup: SimpleClientHttpRequestFactory factory = new ...
Md. Hasan Basri's user avatar
1 vote
1 answer
207 views

In WSO2 APIM 4.2 (open source version) we have setup a load balancer/fail over where we have a redundant back-end setup. In this example we are having an API deployed on 2 servers. If both servers are ...
StackedOverflow's user avatar
1 vote
3 answers
2k views

So, I was doing a simple spring boot project using resilience4j's tools, like @RateLimiter, @CircuitBreaker and @Retry. All was working fine, even with personalized exceptions, because they were ...
Gonzalo Martinez's user avatar
0 votes
0 answers
896 views

I am using below code, and what I have seen is BulkheadFullException and RuntimeException is changing the state of circuitbreaker from CLOSED to OPEN, whereas that's not the case with TimeoutException....
tusharRawat's user avatar
0 votes
1 answer
294 views

I have been tested OutlierDetection for one upstream pod. I expected that istio prevents request goes to target upstream pod. My test environment: Tested on docker-desktop, k8s, istio, github + ...
Youngrok Ko's user avatar
0 votes
1 answer
3k views

I have a requirement to generate a prometheus alert if state my resilience4j circuit breaker changes to Open. In order to test it, I want to change its state forcefully. Like I can create a test Rest ...
Sachin Mankotia's user avatar
0 votes
0 answers
964 views

I have configured resilience4j-micrometer and spring-boot-starter-actuator in my service. Apparently this is enough to see metrics in Datadog but I do not see the values populated for the metric for ...
P H's user avatar
  • 376
0 votes
1 answer
613 views

Initially I used spring boot configuration for circuit breaker. @CircuitBreaker(name = "myCircuitBreaker", fallbackMethod = "myFallbackMethod") Then I realized that I need to ...
gstackoverflow's user avatar
-1 votes
1 answer
827 views

I'm quite new to istio and experimenting Istio circuit breaker concepts, for that I have configured the istio virtual service, destination rules and nginx pods. My virtual service have two different ...
Debugger's user avatar
  • 802

1
2 3 4 5
8