feign调用超时

Posted mzc1997

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了feign调用超时相关的知识,希望对你有一定的参考价值。

Feign调用超时

feign调用超时 默认feign调用超时是1秒,断点调试是否调用成功肯定超时

feign.hystrix.enabled=true
#feign调用默认是1000毫秒=1秒    add by six-vision
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=30000
hystrix.command.default.circuitBreaker.sleepWindowInMilliseconds=30000
hystrix.command.default.circuitBreaker.forceClosed=true
#hystrix.command.default.execution.timeout.enabled=false
#请求处理的超时时间  add by six-vision
ribbon.ReadTimeout=30000
ribbon.SocketTimeout=30000
#请求连接的超时时间 add by six-vision
ribbon.ConnectTimeout: 30000

以上是关于feign调用超时的主要内容,如果未能解决你的问题,请参考以下文章

feign服务间调用超时时间

Feign调用时读取超时(Read timed out executing GET)解决方法

Feign 超时设置

微服务调用时的超时异常,使用feign的时候负载均衡策略的调整

Feign请求报请求超时

Spring Cloud Alibaba - 14 OpenFeign自定义配置 + 调用优化 + 超时时间