结合骆驼hystrix和故障转移负载均衡器与Apache骆驼?

时间:2019-07-05 06:56:33

标签: apache apache-camel

是否可以将Apache骆驼故障转移负载平衡器与骆驼hystrix结合使用。  我正在启用轮询选项的情况下平衡两个端点的负载。现在我想让每个端点故障变得轻松。

 .hystrix()
        .hystrixConfiguration()
        .executionTimeoutInMilliseconds(5000)
        .circuitBreakerSleepWindowInMilliseconds(10000)
        .circuitBreakerErrorThresholdPercentage(4)
        .end()
        .loadBalance()
        .failover(50, false, true)

        .to("netty4:http:http://localhost:3000","netty4:http:http://localhost:3000")

        .end()
        .endHystrix()

这是我到目前为止提出的。有人可以帮忙吗?

0 个答案:

没有答案