All Questions
Tagged with fail-fast circuit-breaker
2 questions
0
votes
1
answer
247
views
How to stop existing request execution to stop and just run fallback method in hystrix
In hystrix,I am using execution.isolation.thread.timeoutInMilliseconds this configuration to limit the response in some specific time else go for fallback method,But this setting is also executing the ...
19
votes
2
answers
35k
views
Hystrix Configuration
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=SEMAPHORE
...