- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的项目中有以下架构
我的 UI 服务(端口 8080)对网关服务(端口 8085)进行了 Feign 调用。
我从 UI 服务的 Get 调用是“http://localhost:8080/invoice-list?startDate=2018-08-05&endDate=2018-10-05 ”
来自网关服务“http://localhost:8085/invoice-download-service/invoice-list?startDate=2018-08-05&endDate=2018-10-05”的类似调用
当我从 UI 服务进行此 GET 调用时,我会在几分钟内收到以下错误
is feign.RetryableException: Read timed out executing GET http://localhost:8085/invoice-download-service/invoice-list?startDate=2018-08-05&endDate=2018-10-05] with root cause
java.net.SocketTimeoutException: Read timed out
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=160000000
ribbon.OkToRetryOnAllOperations=true
ribbon.ReadTimeout=5000000
ribbon.ConnectTimeout=5000000
ribbon.MaxAutoRetries=3
ribbon.MaxAutoRetriesNextServer=3
zuul.host.socket-timeout-millis= 5000000
zuul.host.connect-timeout-millis= 5000000
spring.application.name=external-ui-service
server.port=8080
最佳答案
在 UI 服务 application.properties 文件中添加了以下属性。
feign.client.config.default.connectTimeout: 160000000
feign.client.config.default.readTimeout: 160000000
关于spring-boot - feign.RetryableException : Read timed out executing GET,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52664262/
文档告诉我,HTTP 503 响应被认为是可重试的,一些异常(exception)也是如此。 根据经验,我知道 feign.RetryableException 包装了 java.net.Connec
我们正在使用netflix feign来调用 Restful Web服务。对于补丁请求,看来不支持PATCH请求。 Caused by: feign.RetryableException: Inval
我的项目中有以下架构 我的 UI 服务(端口 8080)对网关服务(端口 8085)进行了 Feign 调用。 我从 UI 服务的 Get 调用是“http://localhost:8080/invo
我们在 AWS ECS 上使用 Docker 部署了一个微服务架构。 API 网关和 Eureka 来自 Spring。我们有通过网关完美运行的 Java/NodeJS 微服务,但是使用 SteelT
我正在使用 spring cloud 来配置微服务。我使用 Jhipster 来生成应用程序。 我有三个应用程序 JHipster-Registry、Gateway 和 admin 应用程序 所有三个
我是一名优秀的程序员,十分优秀!