解决使用Zuul中Service Fallback无效或延时的问题

在实际项目中发现,在使用Zuul作为API GetWay 的过程中,当被路由的服务挂掉后并不能及时的返回对应的Fallback,请查阅资料对Zuul进行下述配置后,Fallback无效或延时的问题得以解决。

hystrix:
  command.default.execution.isolation.strategy: THREAD
  command.default.execution.isolation.thread.timeoutInMilliseconds: 60000
  command.default.execution.timeout.enabled: false
  command.default.fallback.enabled: false
  threadpool.default.coreSize: 20

你可能感兴趣的:(解决使用Zuul中Service Fallback无效或延时的问题)