骆驼的节流要求不起作用

时间:2015-05-21 08:38:12

标签: groovy apache-camel throttling eip

以下是我作为基本框架部署的基础groovy路由类中的3条路由。

from("jms:queue:EndPoint1?concurrentConsumers=100")
                .routePolicyRef("myPolicy")
                .transacted()
                .log("Recieved From Endpoint1")
                /*.to("log:Recieved From Endpoint1?groupSize=100")*/
                .to("CommonEndpoint");

        from("jms:queue:EndPoint2?concurrentConsumers=50")
                .rootPolicyRef("myPolicy")
                /*.to("log:Recieved From Endpoint2?groupSize=100")*/
                .log("Recieved From Endpoint2")
                .to("CommonEndpoint");

        from("CommonEndpoint")
                .delay(50)
                /*.to("log:Delayed?groupSize=100")*/
                .log("Delayed");

下面是我在捆绑包中创建的定时器路由,它引用了基本框架。

from("timer://Timer1?fixedRate=true&period=60000")
                .to("jms:queue:EndPoint1");

from("timer://Timer2?fixedRate=true&period=60000")
                .to("jms:queue:EndPoint2");

持续向Endpoint1和Enpoint2发送定时器消息,它们都向commonendpoint发送消息。我的ThrottlingInflightRoutePolicy定义如下。

<bean id="myPolicy" class="org.apache.camel.impl.ThrottlingInflightRoutePolicy">
    <property name="scope" value="Context"/>
    <property name="maxInflightExchanges" value="20"/>
    <property name="resumePercentOfMax" value="10"/>
    <property name="loggingLevel" value="WARN"/>
</bean>

在检查日志时,我只能看到计时器的日志跟踪。我不明白在检查日志时如何限制请求。这里有什么我想念的吗?在我的代码中应该做些什么来测试限制....?

1 个答案:

答案 0 :(得分:1)

我不确定如何实施您已设置的ThrottlingInflightPolicy,但您可以实现这样的路线来实现您的目标。

from("jms:queue:EndPoint1?concurrentConsumers=20")
    .throttle(10)
    .to("Other_Logic_Or_Routing");

注意: 只需将concurrentConsumers降低到20即可控制maxInflightExchanges 节流组件可确保您的消息传递率不超过限制。

有很多方法可以为您的路线配置油门,因此请根据文档查找要配置的内容。我的示例限制了每秒处理10条消息的路由。 http://camel.apache.org/throttler.html