Spring Cloud中,Feign和Ribbon在整合了Hystrix后,可能会出现首次调用失败的问题,要如何解决该问题呢?
Hystrix默认的超时时间是1秒,如果超过这个时间尚未响应,将会进入 fallback 代码。而首次请求往往会比较慢(因为 Spring的懒加载机制 ,要实例化一些类),这个响应时间可能就大于1秒了。知道原因后,我们来总结一下解决放你。解决方案有三种,以feign为例。
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 5000 复制代码
该配置是让Hystrix的超时时间改为5秒,这是最容易想到的办法,不过有点治标不治本。
hystrix.command.default.execution.timeout.enabled: false 复制代码
该配置,用于禁用Hystrix的超时时间,一般不建议使用。
feign.hystrix.enabled: false 复制代码
索性禁用feign的hystrix,该做法比较极端,除非一些特殊场景,不推荐使用。
为名为 microservice-provider-user 的Feign Client禁用Hystrix
@FeignClient(name = "microservice-provider-user") public interface UserFeignClient { @GetMapping("/users/{id}") User findById(@PathVariable("id") Long id); } class FooConfiguration { @Bean @Scope("prototype") public Feign.Builder feignBuilder(){ return Feign.builder(); } } 复制代码
从Dalston开始,Ribbon支持配置eager load实现在启动时就初始化Ribbon相关类。
ribbon: eager-load: enabled: true clients: client1, client2, client3 复制代码
Dalson之前版本可以通过一些Hack的机制实现eager load,不过成本略高,不建议,这里就不贴了。
本文链接: www.itmuch.com/spring-clou…