SpringCloud之一统天下-熔断器Hystrix
程序员文章站
2022-04-29 20:59:00
...
SpringCloud之一统天下-熔断器Hystrix
熔断器Hystrix
为什么要使用熔断器
在微服务架构中通常会有多个服务层调用,基础服务的故障可能会导致级联故障,进而造成整个系统不可用的情况,这种现象被称为服务雪崩效应。服务雪崩效应是一种因“服务提供者”的不可用导致“服务消费者”的不可用,并将不可用逐渐放大的过程。
如果下图所示:A作为服务提供者,B为A的服务消费者,C和D是B的服务消费者。A不可用引起了B的不可用,并将不可用像滚雪球一样放大到C和D时,雪崩效应就形成了。
如何避免产生这种雪崩效应呢?我们可以使用Hystrix来实现熔断器。
什么是Hystrix
Hystrix [hɪst’rɪks]的中文含义是豪猪, 因其背上长满了刺,而拥有自我保护能力
Hystrix 能使你的系统在出现依赖服务失效的时候,通过隔离系统所依赖的服务,防止服务级联失败,同时提供失败回退机制,更优雅地应对失效,并使你的系统能更快地从异常中恢复。
了解熔断器模式请看下图:
快速体验
Feign 本身支持Hystrix,不需要额外引入依赖。
1)修改tensquare_qa模块的application.yml,开启hystrix
feign:
hystrix:
enabled: true
2)创建熔断器实现类BaseClientImpl
在com.tensquare.qa.client包下创建impl包,包下创建熔断实现类,实现自接口LabelClient
package com.tensquare.qa.client.impl;
import com.tensquare.qa.client.BaseClient;
import entity.Result;
import entity.StatusCode;
import org.springframework.stereotype.Component;
@Component
public class BaseClientImpl implements BaseClient {
@Override
public Result findById(String labelId) {
return new Result(false, StatusCode.ERROR, "熔断器触发了!");
}
}
3)修改LabelClient的注解
package com.tensquare.qa.client;
import com.tensquare.qa.client.impl.BaseClientImpl;
import entity.Result;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@FeignClient(value = "tensquare-base", fallback = BaseClientImpl.class)
public interface BaseClient {
@RequestMapping(value = "/label/{labelId}", method = RequestMethod.GET)
public Result findById(@PathVariable("labelId") String labelId);
}
4)测试运行
重新启动问答微服务,测试看熔断器是否运行。
上一篇: Hive安装(超详细)