Spring cloud chaos engineering practice example (hystrix + chaos monkey)

1, eureka use https://www.cnblogs.com/yxth/p/10845640.html Access address: http://127.0.0.1:8761/   2, Chaos monkey spring boot 1. What is the goal of chaos monkey Inspired by the principles of chaos engineering and the distributed system based on springboot, I want to test and know the best performance of the application, especially the ...

Posted by dotty on Wed, 02 Mar 2022 00:19:12 +0100

Microservice fuse current limiting degraded Hystrix

1, Core knowledge of service fault tolerance 1.1 avalanche effect In microservice architecture, it is very common for A request to call multiple services. For example, when the client accesses service A, service A needs to call service B, and service B needs to call service C. due to network reasons or its own reasons, if service B or ser ...

Posted by dw89 on Sun, 20 Feb 2022 13:56:06 +0100

We can't let services be accessed so willfully anymore - distributed services fuse the current limiting weapon to Hystrix

Full text overview Why need hystrix hystrix official website address github Hystrix is also netfix's contribution to distributed systems. Similarly, it has entered the non maintenance phase. Not maintaining does not mean being eliminated. It can only show that the new technology is constantly iterative. The brilliant design is still wor ...

Posted by troybtj on Fri, 18 Feb 2022 23:02:23 +0100

hystrix source code analysis

Recently, I encountered some production problems involving hystrix. I want to understand the underlying principle. Hystrix makes a lot of use of Rxjava's responsive programming. It's a little hard to understand because you don't understand Rxjava. Basic preparation <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.a ...

Posted by hmgroen on Mon, 27 Dec 2021 19:46:13 +0100

Zuul service gateway ✧

Zuul service gateway ☣ Summary of prerequisite knowledge points (not part of the text) 1, What is a gateway? API Gateway (APIGW / API Gateway) , as its name implies, is an API oriented, serial and centralized strong control service that appears on the system boundary. The boundary here is the boundary of the enterpris ...

Posted by www.phphub.com on Sat, 11 Dec 2021 14:26:42 +0100