|
|
|
|
|
by lorewarden
4820 days ago
|
|
Unit tests are of course important, but they don't test for higher level failures like network issues, high latency, increased load, etc. Your components must be designed to be isolated from incidents as much as possible, possibly using the techniques implemented in Hystrix [1], an open source library from Netflix. [1] https://github.com/Netflix/Hystrix |
|