-
Hi All,
We are new to hystrix . We have a very simple configuration for our command
super(Setter.withGroupKey(HystrixCommandGroupKey.Factory.asKey(group))
.andThreadPoolKey(HystrixThread…
-
Sometimes when badly implemented some clients try to repeatedly reconnect to our backend even though receiving same error over and over, we can protect ourselves from this by adding a circuit breaker …
-
According to https://github.com/resilience4j/resilience4j/pull/377#discussion_r271603260 currently the annotations are being processed at runtime.
Since aspectj is already in being used in the cod…
-
**Background**
My service has > 1400 clients and takes dependencies as an input. We want to use Hystrix to prevent unhealthy client provided dependencies from impacting traffic that doesn't rely on t…
-
https://ahus1.github.io/hystrix-examples/manual.html
-
Are there any functionalities around ECS at this time?
Specifically we are looking at the possibility to integrate functionality into Spring Cloud Netflix Ribbon and Hystrix. The idea would be tha…
-
I have a dynamic source of configuration properties (Consul, in this case). When I construct a new Hystrix command, I feed this constructor the value of a particular property at that moment in time, …
-
Hi All,
I'm currently using hystrix and eureka, sometimes i found below error message in my log. And after read the load, I found that HystrixSampleSseServlet.java class code line 168 that caused the…
-
I have a weird problem where hystrix circuit stops breaking after the application has been running for a while (a few hours). My command is called "gdma". Below is my hystrix command configuration f…
-
We are converting a project to WebFlux and we have the following problem:
On our services, we use org.springframework.cloud.netflix.hystrix.HystrixCommands utility class, which wraps the Mono in a …