hystrix详解

时间:2024-11-15 16:33:40

hystrix详解

大家好,我是酷酷的韩~
在这里插入图片描述
一.什么是hystrix?
hystrix是Netlifx开源的一款容错框架,防雪崩利器,具备服务降级,服务熔断,依赖隔离,监控(Hystrix Dashboard)等功能。

二.功能点详解

1.服务降级

使用场景:
比如双十一买东西出现,哎哟喂,被挤爆了。app秒杀某个商品提示网络开小差,请稍后再试。
使用方法:
(1)添加pom文件

    <dependency>
        <groupId></groupId>
        <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
    </dependency>

(2)启动类加@EnableCircuitBreaker注解

(3)使用RestTemplate请求数据 加上@HystrixCommand(fallbackMethod=“fallback”)

(4)fallback是方法 在方法中保持传参和返回值相同。

(5)对(3)(4)的举例

  @GetMapping("/user/test")
  @HystrixCommand(fallbackMethod = "fallback2")
    public String test(@RequestParam ("number")Integer number) {
        if (number == 1) {
            return "success";
        }
        RestTemplate restTemplate = new RestTemplate();
        String str = ("http://127.0.0.1:8081/rw/user/test", );
        return str;
    }
     private String fallback2(Integer number) {
        return "太拥挤了,请稍后再试2";
    }

通过RestTemplate 调用的其他服务,其他服务为正常的接口编写。如果number输入任意不为1时就会请求其http://127.0.0.1:8081/rw/user/test的服务,正常调用时返回正常结果,如果服务短掉或者请求时间过长,则走fallback2

(6)修改超时时间

默认超时时间是1000ms,可通过以下进行设置 单位为ms

    @HystrixCommand(fallbackMethod = "fallback2",
    commandProperties = {
        @HystrixProperty(name = "",value = "3000")
})

通过配置文件进行修改:

hystrix:
  command:
    default:
      execution:
        isolation:
          thread:
            timeoutInMilliseconds: 3000 #请求命令执行超时时间

想对其test单独进行设置,可通过在default的同级添加方法名例如:

hystrix:
  command:
    default:
      execution:
        isolation:
          thread:
            timeoutInMilliseconds: 3000 #请求命令执行超时时间
    test:
      execution:
        isolation:
          thread:
            timeoutInMilliseconds: 1000 #请求命令执行超时时间单独为某一个方法设定(default换为方法名)

2.依赖隔离:

(1)为每一个hystrixCommand提供一个线程池,自动实现了依赖隔离,即使线程池满了也不会影响其他进程。

3.服务熔断:

(1)服务在高并发的情况下出现进程阻塞,导致当前线程不可用,慢慢的全部线程阻塞 ,导致服务器雪崩。这时直接熔断整个服务,而不是一直等到服务器超时。

(2)断路器全开时:一段时间内 达到一定的次数无法调用 并且多次监测没有恢复的迹象 断路器完全打开 那么下次请求就不会请求到该服务
半开:短时间内 有恢复迹象 断路器会将部分请求发给该服务,正常调用时 断路器关闭
关闭:当服务一直处于正常状态 能正常调用

(3)服务熔断使用:

   @HystrixCommand(fallbackMethod = "fallback2", commandProperties = {
            /* @HystrixProperty(name = "",value = "3000"),*/
            @HystrixProperty(name = "", value = "true"),
            @HystrixProperty(name = "", value = "10"),
            @HystrixProperty(name = "", value = "10000"),
            @HystrixProperty(name = "", value = "60"),
    })
    @GetMapping("/user/test")
    public String test(@RequestParam ("number")Integer number) {
        if (number == 1) {
            return "success";
        }
        RestTemplate restTemplate = new RestTemplate();
        String str = ("http://127.0.0.1:8081/rw/user/test", );
        return str;
    }

:true 打开熔断 默认开启
: 当在配置时间窗口内达到此数量的失败后,进行短路。默认20个
:短路多久以后开始尝试是否恢复,默认5s
:出错百分比阈值,当达到此阈值后,开始短路。默认50%

4.服务熔断监控

1.添加pom文件

    <dependency>
        <groupId></groupId>
        <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
    </dependency>
    <dependency>
        <groupId></groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>

2.启动类添加注解 @EnableHystrixDashboard //断路器可视化

比如我这用的本地
localhost:8082/hystrix访问
在这里插入图片描述
点击Monitor Stream进入
在这里插入图片描述
Circuit为熔断器的开启状态 默认是Closed 关闭,当出现多个fallback时会出现Open打开熔断器 再次访问则直接fallback,当服务慢慢的恢复再变为closed。

其中有一篇是解决访问出问题的博客:/hjq_ku/article/details/89516530

一份耕耘,份收获,努力越大,收获越多。------酷酷的韩