504 GATEWAY

504 GATEWAY

码农世界 2024-05-23 后端 62 次浏览 0个评论

问题描述

spring cloub项目通过访问服务的http接口偶尔会出现“504 GATEWAY_TIMEOUT "Response took longer than timeout:PTxxx”的异常。

问题处理

通过测试发现是服务的接口还未返回结果时,gateway就以几个返回了异常,判断出是gateway的HTTP接口的responseTimeout配置原因。

原有配置:

spring:
  cloud:
    gateway:
      httpclient:
       connect-timeout: 1000
       response-timeout: 5s

修改后:

spring:
  cloud:
    gateway:
      httpclient:
       connect-timeout: 1000
       response-timeout: 10s

gateway超时配置

全局http超时:

connect-timeout必须以毫秒为单位指定。

response-timeout必须指定为java.time.Duration

spring:
  cloud:
    gateway:
      httpclient:
        connect-timeout: 1000
        response-timeout: 10s

单个路由配置

这个配置未测试

   - id: per_route_timeouts
        uri: https://example.org
        predicates:
          - name: Path
            args:
              pattern: /delay/{timeout}
        metadata:
          response-timeout: 200
          connect-timeout: 200

转载请注明来自码农世界,本文标题:《504 GATEWAY》

百度分享代码,如果开启HTTPS请参考李洋个人博客
每一天,每一秒,你所做的决定都会改变你的人生!

发表评论

快捷回复:

评论列表 (暂无评论,62人围观)参与讨论

还没有评论,来说两句吧...

Top