1

我正在使用 Mule 2.2.6,具有以下设置:

2 台服务器,每台都有一个运行 Mule 2.2.6 的 ActiveMQ 1 服务器实例

现在,我有一项服务可以从一个 ActiveMQ 中获取消息,并将其放在另一个上。但是,当目标 ActiveMQ 关闭时,这会导致丢失消息的问题。然后,Mule 将从源 ActiveMQ 中获取一条消息,但在尝试将其放置在目标 AtiveMQ 上时遇到此异常:

ERROR [org.mule.DefaultExceptionStrategy] Caught exception in Exception Strategy: No JMS Connection 
java.lang.IllegalStateException: No JMS Connection
    at org.mule.transport.jms.JmsMessageDispatcher.doDispatch(JmsMessageDispatcher.java:81)
    at org.mule.transport.AbstractMessageDispatcher.dispatch(AbstractMessageDispatcher.java:105)
    at org.mule.transport.AbstractConnector$DispatchWorker.doRun(AbstractConnector.java:2561)
    at org.mule.work.AbstractMuleEventWork.run(AbstractMuleEventWork.java:41)
    at org.mule.work.WorkerContext.run(WorkerContext.java:310)
    at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1061)
    at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:575)
    at java.lang.Thread.run(Thread.java:662)

一旦发生这种情况,消息就会丢失,远远低于可接受的范围。

在检查 mule 配置时,我注意到没有 jms-transactions 与将消息从一个 ActiveMQ 移动到另一个的服务相关联,但添加事务后,问题仍然存在。

配置:

ActiveMQ 连接器:

<jms:activemq-connector name="jmsConnectorOuter" specification="1.1"
    persistentDelivery="true" disableTemporaryReplyToDestinations="true" honorQosHeaders="true"
    numberOfConsumers="1" connectionFactory-ref="activeMqConnectionFactoryOuter" maxRedelivery="-1">
    <ee:retry-forever-policy frequency="5000" asynchronous="false" />
</jms:activemq-connector>

<jms:activemq-connector name="jmsConnector" specification="1.1"
    persistentDelivery="true" disableTemporaryReplyToDestinations="true" honorQosHeaders="true"
    numberOfConsumers="1" connectionFactory-ref="activeMqConnectionFactory" maxRedelivery="-1">
    <ee:retry-forever-policy frequency="5000" asynchronous="false" />
</jms:activemq-connector>

Jms 端点:

<endpoint name="queue.destination" address="jms://queue.destination" connector-ref="jmsConnector" />

<endpoint name="queue.source" address="jms://queue.source" connector-ref="jmsConnectorOuter" />

服务:

<service name="OuterActiveMQService">
    <inbound>
        <jms:inbound-endpoint ref="queue.source">
           <jms:transaction action="ALWAYS_BEGIN" timeout="60000" />
        </jms:inbound-endpoint>
    </inbound>

    <outbound>
        <pass-through-router>
            <jms:outbound-endpoint ref="queue.destination" />
        </pass-through-router>
    </outbound>
</service>

当与目标的 ActiveMQ 连接丢失时,可以做些什么来确保消息不会丢失?

4

1 回答 1

2

您需要添加:

<jms:transaction action="ALWAYS_JOIN" />

在出站 JMS 端点中使其加入事务。

于 2013-03-05T16:10:16.807 回答