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 request which was invoked in the backend.Is it possible to stop that also?
Asked
Active
Viewed 218 times
0

pvpkiran
- 25,582
- 8
- 87
- 134

Ankush Nakaskar
- 121
- 1
- 2
- 8
1 Answers
0
It is not possible to "kill" an executing thread, you can implement some kind of interrupt logic, but it is not recommended in most cases. If you post some code it will be easier to answer...

Lital Kolog
- 1,301
- 14
- 39