标签:res int execution https eve type timeout pes uid
基于springCloud Dalston.SR3版本
/** * 用户互扫 * @param uid 被扫人ID * @param userId 当前用户ID * @return */ @PostMapping(REQ_URL_PRE + "/qrCodeReturnUser") UserQrCode qrCodeReturnUser(@RequestParam("uid") String uid,@RequestParam("userId") Integer userId);
@GetMapping(REQ_URL_PRE + "/getUserLevels") Map<Integer, UserLevel> getUserLevels(@RequestParam("userIds") List<Integer> userIds);
@FeignClient
中配置降级处理方式 对于一些不重要的业务 自定义处理很有帮助@FeignClient(value = "cloud-user", fallback = IUsers.UsersFallback.class)
feign
默认只有HystrixBadRequestException
异常不会走熔断,其它任何异常都会进入熔断,需要重新实现一下ErrorDecoder
包装业务异常示例:https://github.com/peachyy/feign-support
feign
默认使用的是基于JDK提供的URLConnection调用HTTP接口,不具备连接池。所以资源开销上有点影响,经测试JDK的URLConnection
比Apache HttpClient
快很多倍。但是Apache HttpClient
和okhttp
都支持配置连接池功能。具体选择需要权衡
hystrix
需要手动指定feign.hystrix.enabled=true
开启熔断feign.compression.request.enabled=true feign.compression.response.enabled=true feign.compression.request.mime-types=text/xml,application/xml,application/json
设置参数hystrix.threadpool.default.coreSize
来指定熔断隔离的线程数 这个数需要调优,经测试 线程数我们设置为和提供方的容器线程差不多,吞吐量高许多。
启用Hystrix
后,很多服务当第一次访问的时候都会失败 是因为初始化负载均衡一系列操作已经超出了超时时间了 默认的超时时间为1S
,设置参数超时时间hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=30000
可解决这个问题。
设置了Hystrix
的超时参数会 还需设置一下ribbon
的相关参数 这些参数和Hystrix
的超时参数有一定的逻辑关系
请求处理的超时时间 ribbon.ReadTimeout=120000
请求连接的超时时间 ribbon.ConnectTimeout=30000
原文:http://blog.seoui.com/2018/09/30/springcloud-feign/
标签:res int execution https eve type timeout pes uid
原文地址:https://www.cnblogs.com/peachyy/p/9729151.html