SpringCloud 熔断器Hystrix超时com.netflix.hystrix.exception.HystrixTimeoutException

最近做SpringCloud项目,在gateway里面用到了熔断器Hystrix,配置了超时时间60s,但是请求接口总是超时异常,按百度的配置了设置,hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=600000,但是结果仍是默认的1秒超时,百思不得其解。
项目结构,是在pom.xml里面引入的其他项目,zuul配置
zuul:
  host:
    connect-timeout-millis: 10000
    socket-timeout-millis: 60000
  routes:
   baseservices-compose:
      path: / test/**
      strip-prefix: true
      sensitiveHeaders:
      serviceId: test

最后发现配置defalut不生效,只能配置对应的serviceId才能生效,目前不清楚具体原因

hystrix:
  command:
    test:
      execution:
        isolation:
          thread:
            timeoutInMilliseconds: 60000

你可能感兴趣的:(SpringCloud 熔断器Hystrix超时com.netflix.hystrix.exception.HystrixTimeoutException)