3

我想用重试和 Hystrix 断路器实现 Apache Camel 路由。我的路线如下所示:

<route>
......
  <onException>
        <exception>java.lang.Exception</exception>
        <redeliveryPolicy  redeliveryDelay="150" maximumRedeliveries="3" logRetryAttempted="true" retryAttemptedLogLevel="WARN"/>
  </onException>
  <hystrix>
        <hystrixConfiguration id="MyServiceHystrix" />
        <to uri="{{my.service.endpoint}}?bridgeEndpoint=true"/>
  </hystrix>
</route>

当在Hystrix 命令线程中调用骆驼 http4 端点时,CamelInternalProcessor不会调用RedeliveryErrorHandler并且没有重试。基本上堆栈跟踪尊重是:

at org.apache.camel.processor.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:542)
    at org.apache.camel.processor.CamelInternalProcessor.process(CamelInternalProcessor.java:197)
    at org.apache.camel.processor.Pipeline.process(Pipeline.java:120)
    at org.apache.camel.processor.Pipeline.process(Pipeline.java:83)
    at org.apache.camel.processor.CamelInternalProcessor.process(CamelInternalProcessor.java:197)
    at org.apache.camel.component.direct.DirectProducer.process(DirectProducer.java:62)
    at org.apache.camel.processor.Pipeline.process(Pipeline.java:120)
    at org.apache.camel.processor.Pipeline.process(Pipeline.java:83)

有人知道为什么会这样吗?我可以在不拆分路线的情况下将两者结合起来吗?

4

1 回答 1

0

这可能有助于其他人设计重试逻辑。

骆驼有.circuitBreaker().inheritErrorHandler(true),但这不再起作用了。(https://camel.apache.org/manual/latest/hystrix-eip.html),也.loadbalancer().circuitBreaker()已弃用。粘贴代码库。

/** @deprecated */
@Deprecated
public LoadBalanceDefinition circuitBreaker(int threshold, long halfOpenAfter, Class<?>... exceptions)

但是,我们可以添加下面的行以在出现异常时重试。

onException(Exception.class)
.maximumRedeliveries(5) //No of times
.redeliveryDelay(1000); //Delay between retries in ms.

在上面的示例中,它将重试所有异常,但是,我们可以通过将 Exception.class 替换为您的程序所针对的对象(例如 NullPointerException.class 或 MyCustomException.class)来缩小重试逻辑以针对特定异常

更新:完全错过了你的问题。我几乎用 Java DSL 写了你使用 XML 所做的事情。忽视!!

于 2020-01-03T15:37:21.717 回答