SpringCloud-07-Hystrix

不管现实多么惨不忍睹,都要持之以恒地相信,这只是黎明前短暂的黑暗而已。不要惶恐眼前的难关迈不过去,不要担心此刻的付出没有回报,别再花时间等待天降好运。真诚做人,努力做事!你想要的,岁月都会给你。SpringCloud-07-Hystrix,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

Hystrix 熔断器

1、Hystrix 概述

Hystix 是 Netflix 开源的一个延迟和容错库,用于隔离访问远程服务、第三方库,防止出现级联失败(雪崩)。

SpringCloud-07-Hystrix

 

 雪崩:一个服务失败,导致整条链路的服务都失败的情形。

 

Hystix 主要功能:

  1.   隔离
    1. 线程池隔离
    2. 信号量隔离
  2.   降级:异常,超时
  3.   熔断
  4.   限流

2、Hystrix 降级 – 服务提供方

在服务提供方,引入 hystrix 依赖

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

定义降级方法

    @GetMapping("/{id}")
    @HystrixCommand(fallbackMethod = "queryById_fallback",commandProperties = {
            @HystrixProperty(name="execution.isolation.thread.timeoutInMilliseconds",value = "3000"),
            @HystrixProperty(name="circuitBreaker.sleepWindowInMilliseconds",value = "10000"),
            @HystrixProperty(name="circuitBreaker.requestVolumeThreshold",value = "20"),
            @HystrixProperty(name="circuitBreaker.errorThresholdPercentage",value = "50"),
    })
    public User queryById(@PathVariable("id") Long id,
                          @RequestHeader(value = "filter",required = false) String filter,
                          @RequestHeader(value = "default-filter",required = false) String default_filter) {
//        int i=5/0;
        if(id==1){
            int i=1/0;
        }
//        try {
//            Thread.sleep(2000);
//        } catch (InterruptedException e) {
//            e.printStackTrace();
//        }
        System.out.println(filter);
        System.out.println(default_filter);
        return userService.queryById(id);
    }

    public User queryById_fallback(Long id, String filter, String default_filter) {
        User user=new User();
        user.setUsername("错误用户...");
        return user;
    }

使用 @HystrixCommand 注解配置降级方法

@HystrixCommand(fallbackMethod = "queryById_fallback",commandProperties = {
            @HystrixProperty(name="execution.isolation.thread.timeoutInMilliseconds",value = "3000"),
            @HystrixProperty(name="circuitBreaker.sleepWindowInMilliseconds",value = "10000"),
            @HystrixProperty(name="circuitBreaker.requestVolumeThreshold",value = "20"),
            @HystrixProperty(name="circuitBreaker.errorThresholdPercentage",value = "50"),
    })

在启动类上开启Hystrix功能:@EnableCircuitBreaker

//@MapperScan("cn.itcast.user.mapper")
@SpringBootApplication
@EnableCircuitBreaker
public class UserApplication {
    public static void main(String[] args) {
        SpringApplication.run(UserApplication.class, args);
    }
}

SpringCloud-07-Hystrix

3、Hystrix 降级 – 服务消费方

feign 组件已经集成了 hystrix 组件。

 

定义feign 调用接口实现类,复写方法,即 降级方法

SpringCloud-07-Hystrix

在 @FeignClient 注解中使用 fallback 属性设置降级处理类。

SpringCloud-07-Hystrix

@Component
public class UserClientCallBack implements UserClient {
    @Override
    public User findUserById(Long id) {
        User user = new User();
        user.setUsername("调用端降级...");
        return user;
    }
}

配置开启 feign.hystrix.enabled = true

SpringCloud-07-Hystrix

4、Hystrix 熔断

Hystrix 熔断机制,用于监控微服务调用情况,当失败的情况达到预定的阈值(5秒失败20次),会打开断路器,拒绝所有请求,直到服务恢复正常为止。

SpringCloud-07-Hystrix

 

 调节熔断参数:

  1. circuitBreaker.sleepWindowInMilliseconds:监控时间
  2. circuitBreaker.requestVolumeThreshold:失败次数
  3. circuitBreaker.errorThresholdPercentage:失败率

SpringCloud-07-Hystrix

5、Hystrix 熔断监控

Hystrix 提供了 Hystrix-dashboard 功能,用于实时监控微服务运行状态。 但是Hystrix-dashboard只能监控一个微服务。 Netflix 还提供了 Turbine ,进行聚合监控。

SpringCloud-07-Hystrix

 

 SpringCloud-07-Hystrix

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/187648.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!