Hystrix Circuit Breaker With Real Impatient
In a distributed environment, failure of any given service is inevitable. Hystrix is a library created by Netflix designed to control the interactions between these distributed services providing greater tolerance of latency and failure. It was created with purpose of solving the fault tolerance in a distributed system. At high level just understand that Hystrix is some fault tolerance framework similar to how we have catch block, in a try catch exception block . Similar to that Hystrix has some…