springCloud服务连接报错:feign.RetryableException: Read timed out executing

springCloud服务连接报错:feign.RetryableException: Read timed out executing

问题:
feign.RetryableException: Read timed out executing…

解决方式:
在yml文件中加上问题解决

feign:
  hystrix:
    enabled: true //feign开启hystrix支持
hystrix:
  command:
    default:
      execution:
        isolation:
          thread:
            timeoutInMilliseconds: 20000
#ribbon的超时时间, 防止feign调用超时
ribbon:
  ReadTimeout: 15000
  ConnectTimeout: 15000
  MaxAutoRetries: 1 #同一台实例最大重试次数,不包括首次调用
  MaxAutoRetriesNextServer: 1 #重试负载均衡其他的实例最大重试次数,不包括首次调用
  OkToRetryOnAllOperations: false  #是否所有操作都重试

你可能感兴趣的:(Springboot,学习)