com.netflix.hystrix.exception.HystrixRuntimeException: xxxFeign#xxxx timed-out and no fallback.....
错误描述在项目运行中需要调用其他微服务的api,使用的是Feign来进行这项功能,但是在代码写好后,出现错误com.netflix.hystrix.exception.HystrixRuntimeException: SkuFeign#findById(Long) timed-out and no fallback available.解决方案查阅资料得知,此时应该对Feign进行超时的配置fei
·
错误描述
在项目运行中需要调用其他微服务的api,使用的是Feign来进行这项功能,但是在代码写好后,出现错误com.netflix.hystrix.exception.HystrixRuntimeException: SkuFeign#findById(Long) timed-out and no fallback available.
解决方案
查阅资料得知,此时应该对Feign进行超时的配置
feign:
hystrix:
enabled: true
client:
config:
default:
connect-timeout: 20000
read-timeout: 20000
或者是
feign.client.config.default.connect-timeout=20000
feign.client.config.default.read-timeout=20000
此处要看你们的yml文件的配置方式
bug解决
更多推荐
已为社区贡献2条内容
所有评论(0)