Hystrix【参数配置及缓存】
1、常用参数说明
hystrix参数的详细配置可参照 https://github.com/Netflix/Hystrix/wiki/Configuration
下面是一些常用的配置:
配置项 | 默认值 | 默认属性 | 实例属性 |
隔离策略,HystrixCommandKey,如果不配置,默认为方法名 | THREAD | hystrix.command.default.execution.isolation.strategy | hystrix.command.HystrixCommandKey.execution.isolation.strategy |
超时时间,hystrixCommand命令执行超时时间,单位:毫秒 | 1000 | hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds | hystrix.command.HystrixCommandKey.execution.isolation.thread.timeoutInMilliseconds |
hystrixCommand命令执行是否开启超时 | true | hystrix.command.default.execution.timeout.enabled | hystrix.command.HystrixCommandKey.execution.timeout.enabled |
超时的时候,是否中断执行操作 | true | hystrix.command.default.execution.isolation.thread.interruptOnTimeout | hystrix.command.HystrixCommandKey.execution.isolation.thread.interruptOnTimeout |
信号量请求数,当设置为信号量隔离策略时,设置最大允许的请求数 | 10 | hystrix.command.default.execution.isolation.semaphore.maxConcurrentRequests | hystrix.command.HystrixCommandKey.execution.isolation.semaphore.maxConcurrentRequests |
CircuitBreaker设置打开fallback并启动fallback逻辑的错误比例 | 50 | hystrix.command.default.circuitBreaker.errorThresholdPercentage | hystrix.command.HystrixCommandKey.circuitBreaker.errorThresholdPercentage |
强制打开断路器,拒绝所有请求 | false | hystrix.command.default.circuitBreaker.forceOpen | hystrix.command.HystrixCommandKey.circuitBreaker.forceOpen |
当为线程隔离时,核心线程池大小 | 10 | hystrix.threadpool.default.coreSize | hystrix.threadpool.HystrixThreadPoolKey.coreSize |
当隔离策略为线程池隔离模式时,最大线程池大小配置。1.5.9版本中还需要allowMaximumSizeToDivergeFromCore为true | 10 | hystrix.threadpool.default.maximumSize | hystrix.threadpool.HystrixThreadPoolKey.maximumSize |
allowMaximumSizeToDivergeFromCore,该属性允许配置maximumSize生效 | false | hystrix.threadpool.default.allowMaximumSizeToDivergeFromCore | hystrix.threadpool.HystrixThreadPoolKey.default.allowMaximumSizeToDivergeFromCore |
在真实的项目中,一般会对超时时间、线程池大小、信号量等进行修改,具体需要根据业务,hystrix默认超时1秒,实际项目中,这个时间是肯定不够的,一般会设置5-10秒,如果有同步上传的业务,时间需要更长,如果配置了ribbon的时间,其超过时间也需要和ribbon的时间配合使用,一般情况下,ribbon的时间应短于hystrix的超时时间。
hystrix两种线程隔离方式比对
性能 | 线程池隔离模式(thread) | 信号量隔离模式(semaphore) |
默认 | 是 | 否 |
线程 | 与请求线程分离 | 与请求线程共享 |
开销 | 上下文频繁切换,开销较大 | 较小 |
异步 | 支持 | 不支持 |
应用并发 | 大 | 小 |
适用场景 | 外网交互 | 内网交互 |
hystrix.command.default.execution.isolation.strategy=thread/semaphore
当应用服务需要与外界交互,由于网络开销较大,这时选用线程隔离策略,可以保证有剩余的容器线程可用,而不会因为外部原因导致线程一直处于阻塞或者等待,可以快速失败返回。
当我们的应用只在内网交互,并且量还挺大,这时使用信号量隔离策略就比较好,因为这类应用的响应速度非常快,由于是内网,不会占用容器线程太长时间。
2、hystrix缓存使用
常用的注解说明:
注解 | 说明 |
@CacheResult |
使用该注解后,结果会被缓存,同时它需要和 @HystrixCommand(commandKey = "xxx") 一起使用,注解参数为cacheKeyMethod |
@CacheRemove(commandKey="xxx") |
清除缓存,需要指定commandKey,注解参数为cacheKeyMethod |
@CacheKey |
指定请求命令参数,默认使用方法所有参数作为key,注解属性为value |
一般在查询接口上使用@CacheResult,在更新接口上使用@CacheRemove删除缓存。
在使用hystrix缓存,注意事项:
- 需要开启 @EnableHystrix
- 需要初始化 HystrixRequestContext
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.web.servlet.HandlerInterceptor; import org.springframework.web.servlet.ModelAndView; import com.netflix.hystrix.strategy.concurrency.HystrixRequestContext; /** * 初始化hystrix上下文 */ public class HystrixContextInterceptor implements HandlerInterceptor { private HystrixRequestContext context; @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object arg2) { context = HystrixRequestContext.initializeContext(); return true; } @Override public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object arg2, Exception arg3) { context.shutdown(); } }
- 在指定了 HystrixCommand 的commandKey以后,在@CacheRemove也要指定commandKey