What does HackerNews think of Hystrix?
Hystrix is a latency and fault tolerance library designed to isolate points of access to remote systems, services and 3rd party libraries, stop cascading failure and enable resilience in complex distributed systems where failure is inevitable.
- https://github.com/Netflix/Hystrix - https://www.youtube.com/watch?v=CZ3wIuvmHeM I think talks about Hystrix a bit, but I'm not sure if it's the presentation I'm thinking of from years ago or not.
For anyone wanting to take a look:
https://github.com/Netflix/eureka
https://github.com/Netflix/Hystrix
https://netflix.github.io/titus/
https://github.com/Netflix/titus-api-definitions
Even though it seems it is no longer maintained, the circuit breakers, fail over modes and all that are well documented.
And I don't know why Hystrix hasn't been adopted by a wide audience yet. It seems like a necessity in the micro service landscape.
Netflix puts out some amazing Java libraries. I've had excellent results using Hystrix [0]. It has been an excellent addition to our systems.
[1] http://techblog.netflix.com/2012/02/fault-tolerance-in-high-...