Hystrix服务熔断

1、service层

    //服务熔断
    @HystrixCommand(fallbackMethod = "paymentCircuitBreaker_fallback",commandProperties = {
            @HystrixProperty(name = "circuitBreaker.enabled",value = "true"),  //是否开启断路器
            @HystrixProperty(name = "circuitBreaker.requestVolumeThreshold",value = "10"),   //请求次数
            @HystrixProperty(name = "circuitBreaker.sleepWindowInMilliseconds",value = "10000"),  //时间范围
            @HystrixProperty(name = "circuitBreaker.errorThresholdPercentage",value = "60"), //失败率达到多少后跳闸
    })
    public String paymentCircuitBreaker(@PathVariable("id") Integer id){
        if (id < 0){
            throw new RuntimeException("*****id 不能负数");
        }
        String serialNumber = IdUtil.simpleUUID();
        return Thread.currentThread().getName()+"\t"+"调用成功,流水号:"+serialNumber;
    }

    public String paymentCircuitBreaker_fallback(@PathVariable("id") Integer id){
        return "id 不能负数,请稍候再试,(┬_┬)/~~     id: " +id;
    }

2、controller层

    //===服务熔断
    @GetMapping("/payment/circuit/{id}")
    public String paymentCircuitBreaker(@PathVariable("id") Integer id){
        String result = paymentService.paymentCircuitBreaker(id);
        // log.info("*******result:"+result);
        return result;
    }

3、执行一下看情况

首先执行多次:

http://localhost:8001/payment/circuit/-30

-30会抛出异常,报错,执行fallbackMethod

Hystrix服务熔断_第1张图片

我们执行多次,点点点点点点点.......

然后!!!,我们执行一次,1,可以看到:

Hystrix服务熔断_第2张图片

懵逼了吧,其实这和我们上面的设置有关:

    @HystrixCommand(fallbackMethod = "paymentCircuitBreaker_fallback",commandProperties = {
            @HystrixProperty(name = "circuitBreaker.enabled",value = "true"),  //是否开启断路器
            @HystrixProperty(name = "circuitBreaker.requestVolumeThreshold",value = "10"),   //请求次数
            @HystrixProperty(name = "circuitBreaker.sleepWindowInMilliseconds",value = "10000"),  //时间范围
            @HystrixProperty(name = "circuitBreaker.errorThresholdPercentage",value = "60"), //失败率达到多少后跳闸
    })

其实熔断器保持了一种错误率,只有当错误率在我们的设定范围之内的时候,才能正常执行业务,否则无法正常执行

上面的意思就是:10秒内如果超过10次请求,那么熔断,错误率在60%以上时,熔断!

Hystrix服务熔断_第3张图片

Hystrix服务熔断_第4张图片

 

你可能感兴趣的:(springcloud)