Added articles in markdown

Added all (missing) current articles of each quadrant.
This commit is contained in:
Philip Feldmann
2017-04-04 17:22:21 +02:00
parent 67b1b9e944
commit 461c4e7dda
62 changed files with 763 additions and 44 deletions

View File

@@ -0,0 +1,17 @@
---
title: "Hystrix "
ring: assess
quadrant: tools
---
Hystrix is a very powerful library for handling failures, fallbacks and latency management within complex distributed environments. Netflix developed it and after years of experience, they are using it in almost each of their microservices. It evolved to a great library for handling resilience in complex architectures and covers solutions for the most common resilience patterns like:
- Fail fasts
- Fail silent
- Circuit Breaker
- Fallbacks (Static, Stubbed)
Beside from that purposes Hystrix also offers some helpful features like parallel and asynchronous execution, In-Request-Caching and other useful features for working with distributed systems.
Another useful component that you are able to use with Hystrix is his powerful dashboard that give you the ability of real time monitoring of external dependencies and how they are behave. Alerting is also able with that powerful dashboard.