openFeign常用注解及超时时间规则详解
Feign可以把Rest请求进行封装,将远程调用的请求封装成本地请求的方式,不需要再手动拼接url和路径
1请求路径
2请求参数
3请求方式
4返回结果
我们使用注解的方式将此四项参数提供给Feign,Feign即可帮我们自动完成一次远程请求
注解:
主类上方加入:
@EnableFeignClients
新建一个接口,并使用注解方式提供4项参数:
@FeignClient("user-service")//提供请求地址
public interface UserClient {
@GetMapping("user/{id}")//提供请求路径及参数
String queryById(@PathVariable("id") Long id);//提供请求方式及返回结果
}
服务调用代码的改变:
原来的代码:
@RestController
@RequestMapping("consumer")
@DefaultProperties(defaultFallback = "fallBack")
public class UserController {
@Autowired
private RestTemplate restTemplate;
@GetMapping("{id}")
@HystrixCommand
public String queryById(@PathVariable("id") Long id){
String url = "http://user-server/user/"+id;
String user = restTemplate.getForObject(url, String.class);
return user;
}
public String fallBack(Long id){
return "服务太拥挤了,请稍后再试!";
}
}
改为:
@RestController
@RequestMapping("consumer")
@DefaultProperties(defaultFallback = "fallBack")
public class UserController {
@Autowired
private UserClient userClient; //注意这里不再有RestTemplate了
@GetMapping("{id}")
@HystrixCommand
public String queryById(@PathVariable("id") Long id){
return String user = userClient.queryById(id); //此处看起来就是本地的调用了一个方法
}
public String fallBack(Long id){
return "服务太拥挤了,请稍后再试!";
}
}
主类:
@SpringCloudApplication
public class ConsumerApplication {
@Bean
@LoadBalanced
public RestTemplate restTemplate(){
return new RestTemplate();
}
public static void main(String[] args) {
SpringApplication.run(ConsumerApplication.class, args);
}
}
改为:
@EnableFeignClients
@SpringCloudApplication
public class ConsumerApplication {
public static void main(String[] args) {
SpringApplication.run(ConsumerApplication.class, args);
}
}
除此之外Feign还支持请求压缩和日志级别,此处不详述
OpenFeign超时时长设置及详解
概念明确:
1 hystrix可配置的部分
hystrix.command.default.execution.timeout.enable=true //为false则超时控制有ribbon控制,为true则hystrix超时和ribbon超时都是用,但是谁小谁生效,默认为true
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=3000//熔断器的超时时长默认1秒,最常修改的参数
circuitBreaker.requestVolumeThreshold=20
circuitBreaker.sleepWindowInMilliseconds=5000
circuitBreaker.errorThresholdPercentage=50
2 ribbon的可配置部分
ribbon.ReadTimeout=1000 //处理请求的超时时间,默认为1秒
ribbon.ConnectTimeout=1000
ribbon.MaxAutoRetries=1
ribbon.MaxAutoRetriesNextServer=0
3 Feign的可配置部分
feign.hystrix.enabled
=false //Feign是否启用断路器,默认为false
feign.client.config.default.connectTimeout
=10000 //Feign的连接建立超时时间,默认为10秒
feign.client.config.default.readTimeout=60000
另外以上各种超时配置,如果都存在,则时间小的配置生效
好的,现在来说Feign的超时时长设置:
1 Feign的默认配置,是不启用hystrix,并且Feign的底层是调用ribbon来实现负载均衡的,所以为了不和ribbon的重试机制冲突因此也不会启用重试机制
因此配置Feign是必须要做的就是
feign.hystrix.enabled
=true //开启Feign的hystrix,这样配置文件中的hystrix的配置才会生效,否则依然是默认的规则
之后设置hystrix的相关配置才可以在Feign中生效,因为Feign也调用了hystrix
2 ribbon和hystrix的配置
因为hystrix的超时时长,默认为1秒,太短了!因此我们一般一定会设置hystrix的超时时长
在上面启用了Feign的hystrix开关后,配置hystrix超时时长
execution.isolation.thread.timeoutInMilliseconds=10000 //这里设置了10秒
然后看ribbon的超时设置:
ribbon的超时设置无非2个:处理超时和连接超时,默认为1秒和1秒
但是,ribbon是有默认重试的,也是2个:统一实例的重试次数和负载均衡的不同实例的重试次数,默认为1次和0次
也就是说,在同一个实例上建立连接如果失败可以重试1次,处理请求如果失败可以重试1次,但是不包括首次调用,即:实际ribbon的超时时间是 1秒×2+1秒×2,即4秒
之后是,但是上面设置了hystrix超时为10秒,因此ribbon超时优先生效
最后是1个是否对所有操作重试的开关,默认为false,这里解释下什么是所有操作:
即:为false是,GET请求不论是连接失败还是处理失败都会重试,而对于非GET请求只对连接失败进行重试
因此得出结论,在使用了Feign的情况下需先开启断路器支持,之后配置hystrix的timeoutInMillisecond大于ribbon的 ( ConnectTimeout + ReadTimeout ) × 2即可
也就是说以后以后的配置中常用的配置项就是
1 开启Feign的hystrix开关
2 hystrix超时时长
3 配置ribbon的ConnectTimeout时长
4 配置ribbon的ReadTimeout 时长