spring cloud:Edgware.RELEASE版本hystrix超時新坑
阿新 • • 發佈:2017-12-24
gpo false ase blog 正常 希望 發現 and ng-
升級到Edgware.RELEASE發現,zuul中不管如何設置hystrix的超時時間均不起作用,仍然是默認的1000ms. 降回低版本後正常,但是低版本的fallback方法中,又拿不到詳細異常信息,最終暫時在Edgware.RELEASE中,將hystrix的超時關掉,參考以下配置:
ribbon: ReadTimeout: 5000 ConnectTimeout: 5000 MaxAutoRetries: 0 MaxAutoRetriesNextServer: 1 hystrix: command: default: execution: timeout: enabled: false #Edgware.RELEASE中,timeoutInMilliseconds不起作用,暫時關掉 isolation: thread: timeoutInMilliseconds: 10000 zuul: host: socket-timeout-millis: 10000 connect-timeout-millis: 10000
希望下個版本中,能盡快修復該問題。
參考文章:
1、hystrix 官方配置:https://github.com/Netflix/Hystrix/wiki/Configuration#execution.isolation.strategy
2、周立的spring-cloud超時總結:http://www.itmuch.com/spring-cloud-sum/spring-cloud-timeout/
spring cloud:Edgware.RELEASE版本hystrix超時新坑