我有一个jms连接器,我从流处理消息的队列接收消息,调用db根据消息中的一些ID获取数据并将响应输出写入文件,我使用动态出站端点来决定输出位置。
<jms:connector name="tibco" numberOfConsumers="20" ..... >
.....
</jms:connector>
<flow name="realtime" doc:name="ServiceId-8">
<jms:inbound-endpoint queue="${some.queue}" connector-ref="tibco" doc:name="JMS">
<jms:transaction action="ALWAYS_BEGIN"/>
</jms:inbound-endpoint>
<processor ref="proc1"></processor>
<processor ref="proc2"></processor>
<component doc:name="Java">
<spring-object bean="comp1"/>
</component>
<processor ref="proc3"></processor>
<collection-splitter doc:name="Collection Splitter"/>
<processor ref="endpointprocessor"></processor>
<foreach collection="#[message.payload.consumerEndpoints]" counterVariableName="endpoints" doc:name="Foreach">
<when expression="#[consumerEndpoint.getOutputType().equals('txt') and consumerEndpoint.getChannel().equals('file')]">
<processor-chain>
<file:outbound-endpoint path="#[consumerEndpoint.getPath()]" outputPattern="#[consumerEndpoint.getClientId()]-#[attributes['eventId']]%#[consumerEndpoint.getTicSeedCount()]-#[attributes['dateTime']].tic" responseTimeout="10000" doc:name="File"/>
</processor-chain>
</when>
<when expression="#[consumerEndpoint.getOutputType().equals('txt') and consumerEndpoint.getChannel().equals('ftp')]">
<processor-chain>
<ftp:outbound-endpoint path="#[consumerEndpoint.getPath()]" outputPattern="#[consumerEndpoint.getClientId()]-#[attributes['eventId']]%#[consumerEndpoint.getTicSeedCount()]-#[attributes['dateTime']].tic" host="#[consumerEndpoint.getHost()]" port="#[consumerEndpoint.getPort()]" user="#[consumerEndpoint.getChannelUser()]" password="#[consumerEndpoint.getChannelPass()]" responseTimeout="10000" doc:name="FTP"/>
</processor-chain>
</when>
</choice>
</foreach>
<rollback-exception-strategy doc:name="Rollback Exception Strategy">
<processor ref="catchExceptionCustomHandling"></processor>
</rollback-exception-strategy>
</flow>
以上不是完整的流程。我粘贴了重要的部分来理解。
问题1.由于我没有在任何级别定义任何线程策略,并且连接器的numberOfConsumers =“20”,如果我在队列中丢弃20条消息,将启动多少线程。 jms队列中的预取大小设置为20。
问题2:我是否需要在接收端和/或流级别配置线程策略。
负载非常高的某个时间(假设一分钟内队列中有15k msgs)我看到消息处理变慢,并且线程转储显示如下所示:
“TIBCO EMS会话调度程序(7905958)”prio = 10 tid = 0x00002aaadd4cf000 nid = 0x3714正在等待监视器条目[0x000000004af1e000] java.lang.Thread.State:BLOCKED(在对象监视器上) at org.mule.endpoint.DynamicOutboundEndpoint.createStaticEndpoint(DynamicOutboundEndpoint.java:153) - 等待锁定&lt; 0x00002aaab711c0e0&gt; (a org.mule.endpoint.DynamicOutboundEndpoint)
任何帮助和指示都将不胜感激。
谢谢 -
答案 0 :(得分:0)
由于动态端点,消息处理变慢,我在创建和使用动态出站端点时看到线程拥塞。我正在使用mule 3.3.x,在查看mule 3.4.x代码后,我意识到动态出站端点创建的处理更为恰当。升级到3.4,问题几乎消失了。