feign:
hystrix:
#feign中开启熔断
enabled: true
hystrix:
command:
#配置服务降级全局超时时间
default:
execution:
isolation:
thread:
timeoutInMilliseconds: 18000
timeout:
enabled: true #开启hystrix,为false将超时控制交给ribbon
ribbon:
openfeign+hystrix+ribbon的配置
最新推荐文章于 2024-09-24 14:10:32 发布
本文介绍了如何配置OpenFeign与Hystrix、Ribbon以实现服务间的容错和负载均衡。重点提及了timeoutInMilliseconds的计算方式,即(1+MaxAutoRetries+MaxAutoRetriesNextServer)*ReadTimeout,并指出在启用@EnableFeignClients时,不需要额外配置熔断器和负载均衡注解。
摘要由CSDN通过智能技术生成