2019独角兽企业重金招聘Python工程师标准>>>
断路器简介
在一个项目中,系统可能被拆分成多个服务,例如用户、订单和库存等。
这里存在这服务调用服务的情况,例如,客户端调用订单服务,订单服务又调用库存服务。
此时若库存服务响应缓慢,会直接导致订单服务的线程被挂起,以等待库存申请服务的响应,在漫长的等待之后用户会因为请求库存失败而得到创建订单失败的结果。
如果在高并发下,因这些挂起的线程在等待库存服务的响应而未能获得释放,会似的后续到来的请求被阻塞,最终导致订单服务也不可用。
在分布式架构中,断路器模式的作用也是类似的,当某个服务单元发生故障之后,通过断路器的故障监控,向调用方返回一个错误响应,而不是漫长的等待。
快速入门
首先,添加断路器hystrix的依赖。
<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-hystrix</artifactId></dependency>
接着在工程的主类,添加注解@EnableCircuitBreaker:
package cn.net.bysoft.owl.bookstore.web.console;import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;@SpringBootApplication
@EnableDiscoveryClient
@EnableCircuitBreaker
public class OwlBookstoreWebConsoleApplication {@Bean@LoadBalancedRestTemplate restTemplate() {return new RestTemplate();}public static void main(String[] args) {SpringApplication.run(OwlBookstoreWebConsoleApplication.class, args);}
}
接着,就可以使用断路器了,可以添加@HystrixCommand注解,对调用服务的方法进行修饰:
@HystrixCommand(fallbackMethod = "findByIdFallback")public User findById(Long id) {UriComponents uriComponents = UriComponentsBuilder.fromUriString("http://SERVICE-USER/users/{id}").build().expand(id).encode();URI uri = uriComponents.toUri();return restTemplate.getForObject(uri, User.class);}public User findByIdFallback(Long id) {return null;}
fallbackMethod是服务发生异常时,回调的降级处理函数,该函数的参数和返回值要与调用函数一致。
断路器的默认超时时间为2000毫秒。当被断路器修饰的函数执行超过这个值,将触发断路器的服务降级,该参数是可以设置的。
断路器配置
全局配置属性:hystrix.[attr].default.
实例配置属性:hystrix.[attr].[key].
execution配置
- Command Properties
- Execution
- execution.isolation.strategy (执行的隔离策略)
- execution.isolation.thread.timeoutInMilliseconds(执行的超时时间)
- execution.timeout.enabled(是否启用超时时间)
- execution.isolation.thread.interruptOnTimeout(超时发生后是否要中断该服务)
- execution.isolation.thread.interruptOnCancel(执行被取消后是否要中断该服务)
- execution.isolation.semaphore.maxConcurrentRequests(当最大并发达到该值,后续的请求会被拒绝)
- Fallback
- fallback.isolation.semaphore.maxConcurrentRequests(fallback方法执行的最大并发请求数,当达到最大,后续的请求将会被拒绝并抛出异常)
- fallback.enabled(服务降级策略是否启用)
- Circuit Breaker
- circuitBreaker.enabled (断路器开关)
- circuitBreaker.requestVolumeThreshold (断路器请求阈值)
- circuitBreaker.sleepWindowInMilliseconds(断路器休眠时间)
- circuitBreaker.errorThresholdPercentage(断路器错误请求百分比)
- circuitBreaker.forceOpen(断路器强制开启)
- circuitBreaker.forceClosed(断路器强制关闭)
- Metrics
- metrics.rollingStats.timeInMilliseconds(滚动时间窗长度,毫秒级)
- metrics.rollingStats.numBuckets(滚动时间窗统计指标信息时划分“桶”的数量)
- metrics.rollingPercentile.enabled(对命令执行的延迟是否使用百分位数来跟踪和计算)
- metrics.rollingPercentile.timeInMilliseconds(设置百分位统计的滚动窗口的持续时间)
- metrics.rollingPercentile.numBuckets(设置百分位统计滚动窗口中使用“桶”的数量)
- metrics.rollingPercentile.bucketSize(设置在执行过程中每个“桶”中保留的最大执行次数)
- metrics.healthSnapshot.intervalInMilliseconds(采集健康快照的间隔等待时间)
- Request Context
- requestCache.enabled(是否启用缓存)
- requestLog.enabled(执行的时间是否打印到日志)
- Execution
- Collapser Properties
- maxRequestsInBatch(请求合并批处理中允许的最大请求数)
- timerDelayInMilliseconds(批处理过程中每个命令延迟的时间,毫秒级)
- requestCache.enabled(是否开启请求缓存)
- Thread Pool Properties
- coreSize(线程池大小)
- maxQueueSize(最大队列数量)
- queueSizeRejectionThreshold (队列大小拒绝阈值)
- metrics.rollingStats.timeInMilliseconds(滚动时间窗的长度,毫秒级)
- metrics.rollingStats.numBuckets(滚动时间窗被划分的数量)
Github
https://github.com/XuePeng87/owl-bookstore