Hystrix是Netflix开源的容错框架,这是Netflix对其的简短介绍:
Hystrix is a latency and fault tolerance library designed to isolate points of access to remote systems, services and 3rd party libraries, stop cascading failure and enable resilience in complex distributed systems where failure is inevitable.
可以大致这样理解:分布式系统间的服务调用,不可避免的会出错,Hystrix提供了一套系统的容错、处理错误的方法,来尽量保证你的分布式系统的稳定性。
以下面这个常见的电商系统服务调用为例:
假如我们现在有上面三个核心服务:用户服务、订单服务、库存服务,三个服务均是通过HTTP调用。
假如库存系统挂了,造成很多的线程阻塞,若后面有很多其他的HTTP请求,将很快造成线程池耗尽,则整个服务对外不可用,这就是微服务系统的雪崩效应。
对于1.1中的案例,依赖Hystrix,可以提供一套依赖服务的治理和监控解决方案,Hystrix包含常用的容错方法:线程池隔离、信号量隔离、熔断、降级等。
首先创建一个空的Spring Boot项目,在pom.xml中加入如下引用:
<dependency>
<groupId>org.springframework.bootgroupId>
<artifactId>spring-boot-starter-webartifactId>
dependency>
<dependency>
<groupId>org.springframework.cloudgroupId>
<artifactId>spring-cloud-starter-sleuthartifactId>
dependency>
<dependency>
<groupId>org.springframework.cloudgroupId>
<artifactId>spring-cloud-starter-netflix-hystrixartifactId>
dependency>
<dependency>
<groupId>org.springframework.cloudgroupId>
<artifactId>spring-cloud-starter-hystrix-dashboardartifactId>
dependency>
<dependency>
<groupId>org.projectlombokgroupId>
<artifactId>lombokartifactId>
<optional>trueoptional>
dependency>
<dependency>
<groupId>com.alibabagroupId>
<artifactId>fastjsonartifactId>
<version>1.2.58version>
dependency>
<dependency>
<groupId>org.springframework.bootgroupId>
<artifactId>spring-boot-starter-testartifactId>
<scope>testscope>
dependency>
其中spring-cloud-starter-hystrix-dashboard是查看hystrix状态的组件,如不用可不添加。
主函数中启动hystrix:
@EnableCircuitBreaker
@EnableHystrixDashboard
其中@EnableHystrixDashboard是查看hystrix状态的组件,如不用可不添加。
增加hystrix.stream的servlet,这个同时也是查看hystrix状态的组件,如不用可不添加:
/**
* 配置hystrix.stream
*
* @return
*/
@Bean
public ServletRegistrationBean getServlet() {
HystrixMetricsStreamServlet streamServlet = new HystrixMetricsStreamServlet();
ServletRegistrationBean registrationBean = new ServletRegistrationBean(streamServlet);
registrationBean.setLoadOnStartup(1);
registrationBean.addUrlMappings("/hystrix.stream");
registrationBean.setName("HystrixMetricsStreamServlet");
return registrationBean;
}
创建一个基本的RestController类调用示例:
import com.alibaba.fastjson.JSONObject;
import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;
/**
* Created by zhaoyh on 2019-07-30
*
* @author zhaoyh
*/
@RestController
@Slf4j
public class TestController {
/**
* 超时时间设置为1000ms
*
* @param id
* @return
*/
@HystrixCommand(fallbackMethod = "onErrors",
commandProperties = {@HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "1000")})
@GetMapping("/getName/{id}")
public JSONObject getName(@PathVariable("id") long id) {
JSONObject json = new JSONObject();
// 在这里构造出错的机会,触发fallback
if (id < 0) {
try {
Thread.sleep(1500);
} catch (InterruptedException e) {
log.error("", e);
}
}
json.put("name", "name_" + id);
return json;
}
@HystrixCommand(fallbackMethod = "onErrors")
@GetMapping("/getAge/{id}")
public JSONObject getAge(@PathVariable("id") long id) {
JSONObject json = new JSONObject();
// 在这里构造出错的机会,触发fallback
if (id < 0) {
throw new RuntimeException("msg");
}
json.put("age", "age_" + id);
return json;
}
/**
* 如果fallback方法的参数和原方法参数个数不一致
* 则会出现FallbackDefinitionException: fallback method wasn't found
*
* @param id
* @return
*/
public JSONObject onErrors(long id) {
JSONObject json = new JSONObject();
json.put("id", id);
json.put("msg", "执行你需要的默认方法!");
return json;
}
}
最后,application.properties中的配置为简单的:
server.port=16091
spring.application.name=springcloud-hystrix-test
启动项目,首先打开 http://localhost:16091/hystrix/ ,这是初始的查看hystrix状态的Dashboard:
当然,如果你在2.1中没有添加spring-cloud-starter-hystrix-dashboard引用,是没有这个页面的。
把 http://localhost:16091/hystrix.stream 链接贴到dashboard里,命个名之后,就可以看到hystrix的请求数据流了:
多请求几次定义的接口,即可看到dashboard有数据了:
请求 http://localhost:16091/getName/-22 ,会抛出异常,模仿我们日常的程序出错:
多执行几次,然后查看dashboard,发现断路器是open的状态:
断路器是open的状态后再请求 http://localhost:16091/getName/-22 都会执行默认的fallback方法,你可以在fallback方法里重写出错后的返回逻辑。
断路器是closed的状态后所有请求恢复正常。
理解熔断:以家用电路保险丝为例,当电流过载时,保险丝会自动断掉,以此来保护家用电器。Hystrix中的断路器也是类似的功能,当达到开关阈值时,断路器打开,此时所有请求执行fallback方法;当达到断路器可以关闭的状态时,熔断器closed,此时所有的请求再恢复正常。Hystrix的熔断器状态转换图如下:
熔断器打开和关闭,都是可配置的,目前,默认的打开和关闭的策略可查询源代码:
static final Integer default_metricsRollingStatisticalWindow = 10000;
private static final Integer default_metricsRollingStatisticalWindowBuckets = 10;
private static final Integer default_circuitBreakerRequestVolumeThreshold = 20;
private static final Integer default_circuitBreakerSleepWindowInMilliseconds = 5000;
private static final Integer default_circuitBreakerErrorThresholdPercentage = 50;
即:10秒的窗口期内,至少请求20次,且出错比例超过50%,则触发熔断器打开。
半开状态的试探休眠时间默认值5000ms。当熔断器open一段时间之后比如5000ms,会尝试放过去一部分流量进行试探,确定依赖服务是否恢复。
理解降级:可以把降级理解为fallback机制,当服务出错时,执行fallback备用方法,可以称为降级机制。
Hystrix使用命令模式HystrixCommand(Command)包装依赖调用逻辑,每个命令在单独线程中/信号授权下执行。并将封装好的命令和线程池的对应关系放到一个ConcurrentHashMap
线程隔离的优点:
当我们依赖的服务是极低延迟的,比如访问内存缓存,就没有必要使用线程池的方式,那样的话开销得不偿失,而是推荐使用信号量这种方式。
将属性execution.isolation.strategy设置为SEMAPHORE 就实现了信号量隔离策略,
线程隔离和信号量隔离的不同可见下图:
线程隔离策略下业务请求线程和执行调用服务的线程不是同一个线程;信号量方式下业务请求线程和执行调用服务的线程是同一个线程。
信号量隔离的方式是限制了总的并发数,每一次请求过来,请求线程和调用依赖服务的线程是同一个线程,那么如果不涉及远程RPC调用(没有网络开销)则使用信号量来隔离,更为轻量,开销更小。
以上内容就是关于Spring Cloud之容错组件Hystrix的全部内容了,谢谢你阅读到了这里!
Author:zhaoyh