SpringCloud重试retry是一个很赞的功能,能够有效的处理单点故障的问题。主要功能是当请求一个服务的某个实例时,譬如你的User服务启动了2个,它们都在eureka里注册了,那么正常情况下当请求User服务时,ribbon默认会轮询这两个实例。此时如果其中一个实例故障了,发生了宕机或者超时等,如果没有配置启用重试retry策略,那么调用方就会得到错误信息或者超时无响应或者是熔断返回的信息。我们希望的自然是一个故障了,会自动切换到另一个去访问。
最简单的方法就是retry。
需要先在pom.xml里加入
- <dependency>
- <groupId>org.springframework.retry</groupId>
- <artifactId>spring-retry</artifactId>
- </dependency>
ribbon、zuul、feign都可以配置各自的retry方式。
1 ribbon配置如下
- @Bean
- @LoadBalanced
- RestTemplate restTemplate() {
- HttpComponentsClientHttpRequestFactory httpRequestFactory = new HttpComponentsClientHttpRequestFactory();
- httpRequestFactory.setReadTimeout(5000);
- httpRequestFactory.setConnectTimeout(5000);
- return new RestTemplate(httpRequestFactory);
- }
2 zuul配置如下
zuul的重试比较简单,不需要任何代码,直接在yml里配置即可。
注意,配置时,ribbon开头的在yml里是不给提示的,不要以为不提示就是没效果,其实是可以用的。
这个ReadTimeout和ConnectTimeout区别是很大的,ConnectTimeout是指建立连接的时间,如果目标服务宕机或网络故障,那么响应的就是ConnectTimeout,无法连接。而ReadTimeout则是连接建立后,等待目标服务返回响应的时间,譬如目标服务做了一个复杂操作导致耗时较长,那么会触发ReadTimeout。
譬如zuul路由了/user路径到user服务上,如果User1实例宕机了,那么配置了retry的zuul就会在重试MaxAutoRetries次数后,切换到另一个实例User2上。如果User2也故障了,那么返回404.
retryableStatusCodes里面有几个错误码,意思就是遇到哪些错误码时触发重试。默认是404,我多配了几个,仅供参考。
3 feign配置如下
feign默认是通过自己包下的Retryer进行重试配置,默认是5次
- import static java.util.concurrent.TimeUnit.SECONDS;
- /**
- * Cloned for each invocation to {@link Client#execute(Request, feign.Request.Options)}.
- * Implementations may keep state to determine if retry operations should continue or not.
- */
- public interface Retryer extends Cloneable {
- /**
- * if retry is permitted, return (possibly after sleeping). Otherwise propagate the exception.
- */
- void continueOrPropagate(RetryableException e);
- Retryer clone();
- public static class Default implements Retryer {
- private final int maxAttempts;
- private final long period;
- private final long maxPeriod;
- int attempt;
- long sleptForMillis;
- public Default() {
- this(100, SECONDS.toMillis(1), 5);
- }
- public Default(long period, long maxPeriod, int maxAttempts) {
- this.period = period;
- this.maxPeriod = maxPeriod;
- this.maxAttempts = maxAttempts;
- this.attempt = 1;
- }
feign取消重试
- @Bean
- Retryer feignRetryer() {
- return Retryer.NEVER_RETRY;
- }
feign请求超时设置
- @Bean
- Request.Options requestOptions(ConfigurableEnvironment env){
- int ribbonReadTimeout = env.getProperty("ribbon.ReadTimeout", int.class, 6000);
- int ribbonConnectionTimeout = env.getProperty("ribbon.ConnectTimeout", int.class, 3000);
- return new Request.Options(ribbonConnectionTimeout, ribbonReadTimeout);
- }
参考:http://www.cnblogs.com/zhangjianbin/p/7228606.html