作用: hystrix 用来保护微服务系统 实现 服务降级 服务熔断
服务端熔断的实现
1.项目中引入hystrix依赖
<!--引入hystrix-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
2.开启断路器
@SpringBootApplication //springboot注解
@EnableDiscoveryClient //服务注册中心注解
@EnableCircuitBreaker //服务熔断注解
public class ProductsApplication {
public static void main(String[] args) {
SpringApplication.run(ProductsApplication.class, args);
}
}
3.使用HystrixCommand注解实现断路
@RestController
public class HystrixController {
private static final Logger log = LoggerFactory.getLogger(HystrixController.class);
@GetMapping("/index/{id}")
// @HystrixCommand(fallbackMethod = "indexFallBack")
@HystrixCommand(defaultFallback = "defaultFallBack")
public String index(@PathVariable("id") Integer id){
log.info("id {}", id);
if (id <= 0){
throw new RuntimeException("id 不能小于0");
}
return "hello hystrix";
}
public String indexFallBack(Integer id){
return "内容太火爆,服务熔断";
}
public String defaultFallBack(){
return "默认熔断方法";
}
}
4.访问测试
- 正常参数访问
- 错误参数访问
熔断器开启的条件
- 1、 当满足一定的阀值的时候(默认10秒内超过20个请求次数)
- 2、 当失败率达到一定的时候(默认10秒内超过50%的请求失败)
- 3、 到达以上阀值,断路器将会开启
- 4、 当开启的时候,所有请求都不会进行转发
- 5、 一段时间之后(默认是5秒),这个时候断路器是半开状态,会让其中一个请求进行转发。如果成功,断路器会关闭,若失败,继续开启。重复4和5。