一、概述

1、分布式系统面临的问题

复杂分布式体系机构中的应用程序有数十个依赖关系,每个依赖关系在某些时候将不可避免地失败

1.1 服务雪崩

多个微服务之间调用的时候,假设微服务A调用微服务B和微服务C,微服务B和微服务C又调用其他的微服务,这就是所谓的“扇出”如果扇出的链路上某个微服务的调用响应时间过长或者不可用,对微服务A的调用就会占用越来越多的系统资源,进而引起系统崩溃,所谓的“雪崩效应”。
对于高流量的应用来说,单一的后端依赖可能会导致所有服务器上的所有资源都在几秒钟内饱和,比失败更糟糕的是,这些应用程序还可能导致服务之间的延迟增加,备份队列,线程和其他系统资源紧张,导致整个系统发生更多的级联故障。这些都表示需要对故障和延迟进行隔离和管理,以便单个依赖关系的失败,不能取消整个应用程序或系统。

通常当你发现一个模块下某个实例失败后,这时候这个模块依然还会接收流量,然而这个有问题的模块还调用了其他模块,这样就会发生级联故障,或者叫雪崩。

2、Hystrix 是什么

Hystrix 是一个用于处理分布式系统的延迟和容错的开源库,在分布式系统里,许多依赖不可避免的会调用失败,比如超时,异常等,Hystrix能够保证在一个依赖出问题的情况下,不会导致整体服务失败,避免级联故障,以提高分布式系统的弹性。

断路器本身是一种开关装置,当某个服务单元发生故障之后,通过断路器的故障监控(类似熔断保险丝),向调用方返回一个符合预期的,可处理的备选响应(FallBack),而不是长时间的等待或者抛出调用方无法处理的异常,这样就保证了服务调用方的线程不会被长时间、不必要地占用,从而避免了故障在分布式系统中的蔓延,乃至雪崩

3、Hystrix能做什么

  • 服务降级
  • 服务熔断
  • 接近实时的监控
  • 。。。。

4、Hystrix官网

https://github.com/Netflix/Hystrix/wiki/How-To-Use

二、Hystrix 重要概念

1、服务降级

服务器繁忙,请稍后再试,不让客户端等待并立刻返回一个好友提示。fallback
哪些情况会触发降级:

  • 程序运行异常
  • 超时
  • 服务熔断触发服务降级
  • 线程池/信号量打满也会导致服务降级

    2、服务熔断

    类比保险丝达到最大服务访问后,直接拒绝访问,拉闸限电,然后调用服务降级的方法并返回友好提示 break

    就是保险丝 || 服务的降级—->进而熔断—->恢复调用链路

3、服务限流

秒杀高并发等操作,严禁一窝蜂的过来拥挤,大家排队,一秒钟N个,有序进行 flowlimit

三、Hystrix案例

1、构建正确提供者模块

搭建基础平台:从正确—->错误—->降级熔断—->恢复 以此平台 演示 Hystrix 服务降级 服务熔断 服务限流

1.1 创建cloud-provider-hystrix-payment8001模块

1.2 添加依赖

Hystrix 单体依赖

  1. <!--新增hystrix-->
  2. <dependency>
  3. <groupId>org.springframework.cloud</groupId>
  4. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  5. </dependency>

总体依赖

  1. <dependency>
  2. <groupId>org.springframework.cloud</groupId>
  3. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  4. </dependency>
  5. <dependency>
  6. <groupId>com.springcloud</groupId>
  7. <artifactId>cloud-api-commons</artifactId>
  8. <version>${project.version}</version>
  9. </dependency>
  10. <dependency>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-web</artifactId>
  13. </dependency>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-actuator</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-devtools</artifactId>
  21. <scope>runtime</scope>
  22. <optional>true</optional>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.projectlombok</groupId>
  26. <artifactId>lombok</artifactId>
  27. <optional>true</optional>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>

1.3 yaml配置文件

  1. server:
  2. port: 8081
  3. eureka:
  4. client:
  5. fetch-registry: true
  6. register-with-eureka: true
  7. service-url:
  8. defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka
  9. spring:
  10. application:
  11. name: cloud-provider-hystrix-payment

1.4 主启动类

  1. @EnableEurekaClient
  2. @SpringBootApplication
  3. public class PaymentHystrixMain8001 {
  4. public static void main(String[] args) {
  5. SpringApplication.run(PaymentHystrixMain8001.class, args);
  6. }
  7. }

1.5 业务类

service服务类

  1. @Service
  2. public class PaymentService {
  3. //正常访问方法
  4. public String paymentInfo_OK(Integer id){
  5. return "线程池:" + Thread.currentThread().getName() + "\tpaymentInfo_OK,id:" + id;
  6. }
  7. //超时访问方法
  8. public String paymentInfo_TimeOut(Integer id){
  9. int timeNumber = 3;
  10. try {
  11. TimeUnit.SECONDS.sleep(timeNumber);
  12. } catch (InterruptedException e) {
  13. e.printStackTrace();
  14. }
  15. return "线程池:" + Thread.currentThread().getName() +
  16. "\tpaymentInfo_TimeOut,id:" + id + ",耗时:" + timeNumber + "秒";
  17. }
  18. }

controller服务类

  1. @Slf4j
  2. @RestController
  3. public class PaymentController {
  4. @Resource
  5. PaymentService paymentService;
  6. @Value("${server.port}") //spring的@Value注解
  7. private String ServerPort;
  8. @GetMapping("/payment/hystrix/ok/{id}")
  9. public String paymentInfo_OK(@PathVariable("id") Integer id){
  10. String result = paymentService.paymentInfo_OK(id);
  11. log.info("******result:" + result);
  12. return result;
  13. }
  14. @GetMapping("/payment/hystrix/timeout/{id}")
  15. public String paymentInfo_TimeOut(Integer id){
  16. String result = paymentService.paymentInfo_OK(id);
  17. log.info("******result:" + result);
  18. return result;
  19. }
  20. }

1.6 测试

启动eureka7001
启动cloud-provider-hystrix-payment8001
访问
success的方法 - http://localhost:8001/payment/hystrix/ok/1
每次调用耗费5秒钟 - http://localhost:8001/payment/hystrix/timeout/1
上述module均OK
以上述为根基平台,从正确 -> 错误 -> 降级熔断 -> 恢复。

2、构建正确消费者模块

2.1 创建cloud-consumer-feign-hystrix-order80 模块

2.2 pom

  1. <dependencies>
  2. <!--新增hystrix-->
  3. <dependency>
  4. <groupId>org.springframework.cloud</groupId>
  5. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  6. </dependency>
  7. <!--openfeign-->
  8. <dependency>
  9. <groupId>org.springframework.cloud</groupId>
  10. <artifactId>spring-cloud-starter-openfeign</artifactId>
  11. </dependency>
  12. <dependency>
  13. <groupId>org.springframework.cloud</groupId>
  14. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>com.springcloud</groupId>
  18. <artifactId>cloud-api-commons</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-actuator</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-devtools</artifactId>
  32. <scope>runtime</scope>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.projectlombok</groupId>
  37. <artifactId>lombok</artifactId>
  38. <optional>true</optional>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. </dependencies>

2.3 yaml配置

  1. server:
  2. port: 80
  3. eureka:
  4. client:
  5. register-with-eureka: true
  6. fetch-registry: true
  7. service-url:
  8. defaultZone: http://eureka7001.com:7001/eureka, http://eureka7002.com:7002/eureka
  9. spring:
  10. application:
  11. name: cloud-feign-hystrix-consumer
  12. # ribbon超时设置
  13. # 设置feign 客户端超时时间(OpenFeign默认支持ribbon)
  14. ribbon:
  15. # 设置建立连接后从服务器读取到可用资源所用的时间
  16. ReadTimeout: 5000
  17. # 设置建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间
  18. ConnectTimeout: 5000

2.4 主启动类

  1. @EnableFeignClients
  2. @SpringBootApplication
  3. public class HystrixMain80 {
  4. public static void main(String[] args) {
  5. SpringApplication.run(HystrixMain80.class,args);
  6. }
  7. }

2.5 业务类

声明式远程调用接口

  1. @Component
  2. @FeignClient(value = "CLOUD-PROVIDER-HYSTRIX-PAYMENT")
  3. public interface PaymentHystrixService {
  4. @GetMapping("/payment/hystrix/ok/{id}")
  5. public String paymentInfo_OK(@PathVariable("id") Integer id);
  6. @GetMapping("/payment/hystrix/timeout/{id}")
  7. public String paymentInfo_TimeOut(@PathVariable("id") Integer id);
  8. }

controller

  1. @Slf4j
  2. @RestController
  3. public class OrderHystrixController {
  4. @Resource
  5. private PaymentHystrixService paymentHystrixService;
  6. @GetMapping("/consumer/payment/hystrix/ok/{id}")
  7. public String paymentInfo_OK(@PathVariable("id") Integer id){
  8. String result = paymentHystrixService.paymentInfo_OK(id);
  9. return result;
  10. }
  11. @GetMapping("/consumer/payment/hystrix/timeout/{id}")
  12. public String paymentInfo_TimeOut(@PathVariable("id") Integer id){
  13. String result = paymentHystrixService.paymentInfo_TimeOut(id);
  14. return result;
  15. }
  16. }

2.6 启动80,进行测试

http://localhost/consumer/payment/hystrix/ok/1
http://localhost/consumer/payment/hystrix/timeout/1

3、Hystrix解决问题

3.1 provider服务 8001超时了,调用者80不能一直卡死等待,必须有服务降级

3.2 provider服务 8001 宕机了,调用者80不能一直卡死等待,必须有服务降级

3.3 provdier服务 8001OK,调用者80自己出现了故障或有自我要求(自己的等待时间小于服务提供者)

四、服务降级

不管是在消费者,还是提供者,都可以进行服务降级,使用过@HystrixCommand注解指定降级后的方法 一般做服务降级 都是 客户端做

1、服务降级配置

@HystrixCommand注解

1.1 对8001 提供端进行改造

对80消费端改造的话 亦是如此

  • 设置自身调用超时时间的峰值,峰值内可以正常运行,如果在峰值外就执行备用方法。
  • 如果不设置峰值的话,直接在方法里抛出 10 / 0 by zero 异常 也会调用备用方法 ```java @HystrixCommand(fallbackMethod = “paymentInfo_TimeOutHandler”, commandProperties = { //设置自身超时调用时间的峰值为3秒,峰值内可以正常运行,超过了需要有兜底的方法处理,服务降级fallback @HystrixProperty(name = “execution.isolation.thread.timeoutInMilliseconds”, value = “3000”) }) public String paymentInfo_TimeOut(Integer id){ int timeNumber = 5; //int i = 1 / 0; try {
    1. TimeUnit.SECONDS.sleep(timeNumber);
    } catch (InterruptedException e) {
    1. e.printStackTrace();
    } return “线程池:” + Thread.currentThread().getName() +
    1. "\tpaymentInfo_TimeOut,id:" + id + ",耗时:" + timeNumber + "秒";
    } public String paymentInfo_TimeOutHandler(Integer id){ return “8001提供者,线程池:” + Thread.currentThread().getName() +
    1. "\tpaymentInfo_TimeOutHandler系统繁忙,请稍后再试,id:" + id;
    }
  1. <a name="LoVZv"></a>
  2. ### 1.2 主启动类激活
  3. `@EnableCircuitBreaker`
  4. > 你在消费端 进行了降级 就在消费端添加该注解,反之...
  5. ```java
  6. @EnableCircuitBreaker
  7. @EnableEurekaClient
  8. @SpringBootApplication
  9. public class HystrixMain8001 {
  10. public static void main(String[] args) {
  11. SpringApplication.run(HystrixMain8001.class,args);
  12. }
  13. }

图像.png

1.3 启动7001和8001,测试8001的fallback

http://localhost:8001/payment/hystrix/timeout/1
上面故意制造两种异常:

  1. int age = 10/0,计算异常
  2. 我们能接受3秒钟,它运行5秒钟,超时异常。

当前服务不可用了,做服务降级,兜底的方案都是paymentInfo_TimeOutHandler

1.4 Hystrix之服务降级订单侧fallback

80订单微服务,也可以更好的保护自己,自己也依样画葫芦进行客户端降级保护
题外话,切记 - 我们自己配置过的热部署方式对java代码的改动明显,但对@HystrixCommand内属性的修改建议重启微服务

YML

  1. server:
  2. port: 80
  3. eureka:
  4. client:
  5. register-with-eureka: false
  6. service-url:
  7. defaultZone: http://eureka7001.com:7001/eureka/
  8. #开启
  9. feign:
  10. hystrix:
  11. enabled: true

主启动

  1. @SpringBootApplication
  2. @EnableFeignClients
  3. @EnableHystrix//添加到此处
  4. public class OrderHystrixMain80{
  5. public static void main(String[] args){
  6. SpringApplication.run(OrderHystrixMain80.class,args);
  7. }
  8. }

业务类

  1. @RestController
  2. @Slf4j
  3. public class OrderHystirxController {
  4. @Resource
  5. private PaymentHystrixService paymentHystrixService;
  6. @GetMapping("/consumer/payment/hystrix/timeout/{id}")
  7. @HystrixCommand(fallbackMethod = "paymentTimeOutFallbackMethod",commandProperties = {
  8. @HystrixProperty(name="execution.isolation.thread.timeoutInMilliseconds",value="1500")
  9. })
  10. public String paymentInfo_TimeOut(@PathVariable("id") Integer id) {
  11. //int age = 10/0;
  12. String result = paymentHystrixService.paymentInfo_TimeOut(id);
  13. return result;
  14. }
  15. //善后方法
  16. public String paymentTimeOutFallbackMethod(@PathVariable("id") Integer id){
  17. return "我是消费者80,对方支付系统繁忙请10秒钟后再试或者自己运行出错请检查自己,o(╥﹏╥)o";
  18. }
  19. }

访问测试:http://localhost/consumer/payment/hystrix/timeout/1

2、全局服务降级@DefaultProperties

解决的问题:
解决了每个方法都需要有兜底的方法的痛处
解决了兜底方法和业务逻辑混在一起的问题

2.1 解决代码膨胀

解决每个方法都要有兜底方法问题

@DefaultProperties(defaultFallback = "方法名")
标注在类上,表示没有指定@HystrisCommand(fallbackMethod="方法名")的方法就是用@DefaultProperties(defaultFallback="方法名")所指定的做备用方法。

注意:就算使用全局降级配置 也需要在方法上添加@HystrisCommand 注解

1:1每个方法配置一个服务降级的方法,技术上可以,实际中不可用 1:N 除了个别重要核心业务有专属,其他普通的可以通过@DefaultProperties(defaultFallback= "")统一跳转到统一处理结果页面

  1. 在80的OrderHystrixController中添加全局fallback方法;
  2. 并在OrderHystrixController类上加上@DefaultProperties(defaultFallback = “payment_Global_FallbackMethod”),设置全局fallback方法;
  3. 修改paymentInfo_TimeOut方法的@HystrixCommand;
  4. 进行测试,http://localhost/consumer/payment/hystrix/timeout/1。

    1. @RestController
    2. @Slf4j
    3. @DefaultProperties(defaultFallback = "payment_Global_FallbackMethod")
    4. public class OrderHystirxController {
    5. @Resource
    6. private PaymentHystrixService paymentHystrixService;
    7. @GetMapping("/consumer/payment/hystrix/ok/{id}")
    8. public String paymentInfo_OK(@PathVariable("id") Integer id)
    9. {
    10. String result = paymentHystrixService.paymentInfo_OK(id);
    11. return result;
    12. }
    13. @GetMapping("/consumer/payment/hystrix/timeout/{id}")
    14. @HystrixCommand //用全局的fallback方法
    15. public String paymentInfo_TimeOut(@PathVariable("id") Integer id) {
    16. String result = paymentHystrixService.paymentInfo_TimeOut(id);
    17. return result;
    18. }
    19. //善后方法
    20. public String paymentTimeOutFallbackMethod(@PathVariable("id") Integer id){
    21. return "我是消费者80,对方支付系统繁忙请10秒钟后再试或者自己运行出错请检查自己,o(╥﹏╥)o";
    22. }
    23. // 下面是全局fallback方法
    24. public String payment_Global_FallbackMethod() {
    25. return "Global异常处理信息,请稍后再试,/(ㄒoㄒ)/~~";
    26. }
    27. }

3、服务降级,客户端调用服务端,服务端宕机了

本次案例服务降级处理是在客户端80实现完成的,与服务端8001没有关系
只需要为Feign客户端定义的远程调用接口添加一个服务降级处理的实现类即可实现解耦合

未来面临的异常

  • 运行
  • 超时
  • 宕机

    3.1 定义远程调用接口实现类

    1. @Component
    2. public class PaymentFallbackService implements PaymentHystrixService{
    3. @Override
    4. public String paymentInfo_OK(Integer id) {
    5. return "-----PaymentFallbackService fall back-paymentInfo_ok ,o(╥﹏╥)o";
    6. }
    7. @Override
    8. public String paymentInfo_TimeOut(Integer id) {
    9. return "-----PaymentFallbackService fall back-paymentInfo_TimeOut ,o(╥﹏╥)o";
    10. }
    11. }

    3.2 远程调用接口中@FeignClient注解添加fallback属性

    添加:fallback = PaymentRemoteHystrixSserviceImpl.class 属性 ```java @Component @FeignClient(value = “CLOUD-PROVIDER-HYSTRIX-PAYMENT” ,fallback = PaymentFallbackService.class) public interface PaymentHystrixService { @GetMapping(“/payment/hystrix/ok/{id}”) public String paymentInfo_OK(@PathVariable(“id”) Integer id);

    @GetMapping(“/payment/hystrix/timeout/{id}”) public String paymentInfo_TimeOut(@PathVariable(“id”) Integer id); }

  1. <a name="oJ1mi"></a>
  2. ### 3.3 yml配置文件添加这一句
  3. ```yaml
  4. feign:
  5. hystrix:
  6. enabled: true

3.4 测试

image.png

总结

  1. 创建远程调用接口实现类,并对其进行[降级]实现
  2. 给@FeignClient 添加fallback属性
  3. 配置文件注意要启动 feign.hystrix

五、服务熔断

1、熔断机制概述

熔断机制式应对雪崩效应的一种微服务链路保护机制。当扇出链路的某个微服务出错不可用或者响应时间太长时,会进行服务的降级,进而熔断该节点微服务的调用,快速返回错误的响应信息。
当检测到该节点微服务调用响应正常后,自动恢复调用链路。

熔断状态: 开启 关闭 半开启

在SpringCloud框架中,熔断机制通过Hystrix实现Hystrix会监控微服务间调用的状况。
当失败的调用到一定阈值,缺省时5秒内20此调用失败,就会启动熔断机制,熔断机制的注解是@HystrixCommand

大神论文:https://martinfowler.com/bliki/CircuitBreaker.html

2、实操

注解中的配置解释:在一个10秒钟的窗口期,如果有10个请求 60%都失败了 就熔断

2.1 修改cloud-provider-hystrix-payment8001

  1. //=====服务熔断
  2. @HystrixCommand(fallbackMethod = "paymentCircuitBreaker_fallback",commandProperties = {
  3. @HystrixProperty(name = "circuitBreaker.enabled",value = "true"),// 是否开启断路器
  4. @HystrixProperty(name = "circuitBreaker.requestVolumeThreshold",value = "10"),// 请求次数
  5. @HystrixProperty(name = "circuitBreaker.sleepWindowInMilliseconds",value = "10000"), // 时间窗口期
  6. @HystrixProperty(name = "circuitBreaker.errorThresholdPercentage",value = "60"),// 失败率达到多少后跳闸
  7. })
  8. public String paymentCircuitBreaker(@PathVariable("id") Integer id) {
  9. if (id < 0) {
  10. throw new RuntimeException("******id 不能负数");
  11. }
  12. String serialNumber = IdUtil.simpleUUID();
  13. return Thread.currentThread().getName() + "\t" + "调用成功,流水号: " + serialNumber;
  14. }
  15. public String paymentCircuitBreaker_fallback(@PathVariable("id") Integer id) {
  16. return "id 不能为负数,请稍后再试,/(ㄒoㄒ)/~~ id: " + id;
  17. }

2.2 对8001服务端的controller进行改造 增加熔断机制

  1. @GetMapping("/payment/circuit/{id}")
  2. public String paymentCircuitBreaker(@PathVariable("id") Integer id){
  3. String result = paymentService.paymentCircuitBreaker(id);
  4. log.info("******result:" + result);
  5. return result;
  6. }

2.3 测试

  • 在web页面 输入参数为负数会进入到 兜底方法,如果输入负数的次数 【在一个10秒钟的窗口期,如果有10个请求 60%都失败了 就熔断】符合这个要求,那么就会触发熔断机制,然后你再输入正数都不会执行成功了!
  • 慢慢的他自己会检测到后台输入好几个正数了,就会自动关闭熔断
  • http://localhost:8001/payment/circuit/-1

image.png
image.png

3、总结

3.1 熔断类型

  • 熔断打开:请求不再进行调用当前服务,内部设置始终一般为MTTR(平均故障处理时间),当打开时长达到所设始终则进入半熔断状态。
  • 熔断关闭:熔断关闭不会对服务进行熔断
  • 熔断半开:部分请求根据规则调用当前服务,如果请求成功且符合规则则认位当前服务恢复正常,关闭熔断

3.2 断路器在什么情况下开始起作用

image.png
涉及到断路器的三个重要因素:快照时间窗,请求总数阈值,错误百分比阈值

1:快照时间窗:

  • 断路器确定是否打开需要统计一些请求和错误数据,而统计的时间范围就是快照时间窗,默认为最近的10秒。

2:请求总数阈值:

  • 在快照时间窗内,必须满足请求总数阈值才有资格熔断,默认为20,意味着在10秒内,如果该Hystrix命令的调用次数不足20次,即使所有的请求都超时或者其他原因失败了,断路器都不会打开。

3:错误百分比阈值:

  • 当请求总数在快照时间窗内超过了阈值,比如发生了30次调用,如果在这30次调用中,有15次发生了超时异常,也就是超过50%的错误百分比,在默认设定50%阈值情况下,这时候就会将断路器打开。

3.3 断路器开始或者关闭条件

  • 当满足一定的阈值的时候(默认是10秒内超过20个请求次数)
  • 当失败率达到一定的时候(默认10秒内超过50%的请求失败)
  • 到达以上阈值,断路器将会开启
  • 当开启的时候,所有的请求都不会进行转发。
  • 一段时间后(默认是5秒),这个时候断路器是半开状态,会让其中一个请求进行转发,如果成功,断路器关闭,如果失败,继续开启

3.4 断路器打开之后

1: 再有请求调用的时候,将不会调用主逻辑,而是直接调用降级的fallback方法,通过断路器,实现了自动的发现错误并将降级逻辑升级为主逻辑,减少响应延迟的效果。

2:原来的主逻辑要如何恢复?

  • 对于这一问题mhystrix也为我们实现了自动恢复功能。
  • 当断路器打开,对主逻辑进行熔断之后,hystrix会启动一个休眠时间窗,在这个时间窗内,降级逻辑是临时的成为主逻辑。
  • 当休眠时间窗到期,断路器将进入半开状态,释放给一次请求到原来的主逻辑上,如果此次请求正常返回,那么断路器将继续闭合。
  • 主逻辑恢复,如果这次请求依然有问题,断路器继续进入打开状态,休眠时间窗重新计时。

4、ALL配置

1.png2.png3.png4.png

六、服务限流

在spring cloud alibaba Sentinel时再说!

七、Hystrix工作流程

https://github.com/Netflix/Hystrix/wiki/How-it-Works

八、服务监控 HystrixDashboard

除了隔离依赖服务的调用以外,Hystrix还提供了准实时的调用监控(Hystrix Dashboard)Hystrix会持续的记录所有通过Hystrix发起的请求的执行信息,并以统计报表和图形的形式展示给用户,包括每秒执行多少请求多少成功,多少失败等,Netflix通过hystrix-metrics-event-stream项目实现了对以上指标的监控,Spring Cloud提供了Hystrix Dashboard的整合,对监控内容转化成可视化页面。

1、搭建HystrixDashboard

Hystrix 做服务监控还需要创建一个模块,而阿里巴巴的sentinel 直接给你要给网站就能使用

1.1 创建新的模块 could-consumer-hystrix-dashboard9001

1.2 添加依赖

  1. <dependencies>
  2. <!--新增hystrix dashboard-->
  3. <dependency>
  4. <groupId>org.springframework.cloud</groupId>
  5. <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.springframework.cloud</groupId>
  9. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  10. <version>3.0.2</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-web</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-actuator</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-devtools</artifactId>
  23. <scope>runtime</scope>
  24. <optional>true</optional>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. <optional>true</optional>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. </dependencies>

1.3 yaml

  1. server:
  2. port: 9001
  3. eureka:
  4. client:
  5. fetch-registry: true
  6. register-with-eureka: true
  7. service-url:
  8. defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka
  9. spring:
  10. application:
  11. name: cloud-consumer-hystrix-dashboard

1.4 需要监控的服务都需要添加以下该依赖

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-actuator</artifactId>
  4. </dependency>

1.5 主启动类添加注解 @EnableHystrixDashboard

表示启动 监控服务

  1. @EnableHystrixDashboard
  2. @SpringBootApplication
  3. public class HystrixDashboardMain9001 {
  4. public static void main(String[] args) {
  5. SpringApplication.run(HystrixDashboardMain9001.class,args);
  6. }
  7. }

1.6 测试

浏览器输入 http://localhost:9001/hystrix 进入下面页面

image.png

2、监控8001提供端

8001提供端 一定要有下面两个依赖

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-web</artifactId>
  4. </dependency>
  5. <dependency>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-actuator</artifactId>
  8. </dependency>

新版本Hystrix 需要在主启动类【MainHystrix8001】中指定监控路径
不然就会报错
image.png

在8001提供方的主启动类中添加以下代码

  1. @EnableCircuitBreaker
  2. @EnableEurekaClient
  3. @SpringBootApplication
  4. public class HystrixMain8001 {
  5. public static void main(String[] args) {
  6. SpringApplication.run(HystrixMain8001.class,args);
  7. }
  8. /**
  9. *此配置是为了服务监控而配置,与服务容错本身无关,springcloud升级后的坑
  10. *ServletRegistrationBean因为springboot的默认路径不是"/hystrix.stream",
  11. *只要在自己的项目里配置上下面的servlet就可以了
  12. */
  13. @Bean
  14. public ServletRegistrationBean getServlet() {
  15. HystrixMetricsStreamServlet streamServlet = new HystrixMetricsStreamServlet();
  16. ServletRegistrationBean registrationBean = new ServletRegistrationBean(streamServlet);
  17. registrationBean.setLoadOnStartup(1);
  18. registrationBean.addUrlMappings("/hystrix.stream");
  19. registrationBean.setName("HystrixMetricsStreamServlet");
  20. return registrationBean;
  21. }
  22. }

9001监控8001 - 填写监控地址 - http://localhost:8001/hystrix.streamhttp://localhost:9001/hystrix页面的输入框。
在浏览器输入 http://localhost:8001/payment/circuit/-1 测试8001接口
发现豪猪哥的监控页面 发生了变化
image.png

2.1 如何查看仪表盘

image.png
图像.png