编辑:骡子3.4.1
我们有一个Mule流,它将来自一个数据库的读取与插入替换为另一个数据库,所有这些都包含在事务范围内。在这种特殊情况下,后一个插入失败了,我们希望所有内容都回滚。
当我们查看日志时,我们看到第二次插入的异常(例如,重复的PRIMARY KEY)(即下面示例中的BulkInsertInstanceToCache)。当我们查看数据库时,我们会看到第一个插入的数据(下例中的BulkInsertActivityToCache)。我们预计所有数据都将消失。
我们是否针对我们想要的行为错误地配置了此范围?
以下是代码示例,我将其简化为两次插入,以显示正在处理的处理类型。
<flow name="ProcessBulkUpdateCache" processingStrategy="synchronous" doc:name="ProcessBulkUpdateCache">
<transactional action="ALWAYS_BEGIN" doc:name="Transactional">
<jdbc-ee:outbound-endpoint exchange-pattern="request-response"
queryKey="GetActivitiesForCache" queryTimeout="-1" connector-ref="SumTotalDatabase">
<jdbc-ee:transaction action="NONE" />
</jdbc-ee:outbound-endpoint>
<jdbc-ee:outbound-endpoint exchange-pattern="request-response"
queryKey="BulkInsertActivityToCache" queryTimeout="-1" connector-ref="EAIServiceDatabase">
</jdbc-ee:outbound-endpoint>
<jdbc-ee:outbound-endpoint exchange-pattern="request-response"
queryKey="GetInstancesForCache" queryTimeout="-1" connector-ref="SumTotalDatabase">
<jdbc-ee:transaction action="NONE" />
</jdbc-ee:outbound-endpoint>
<jdbc-ee:outbound-endpoint exchange-pattern="request-response"
queryKey="BulkInsertInstanceToCache" queryTimeout="-1" connector-ref="EAIServiceDatabase">
</jdbc-ee:outbound-endpoint>
</transactional>
<catch-exception-strategy doc:name="Unexpected">
...etc.
</catch-exception-strategy>
</flow>
编辑我尝试在第一个INSERT中添加一个BEGIN_OR_JOIN事务元素,在第二个INSERT中添加一个ALWAYS_JOIN事务元素,但是当代码到达第二个时没有打开要加入的事务时会抛出异常
答案 0 :(得分:2)
分别使用ALWAYS_BEGIN
和ALWAYS_JOIN
即可。
但是,如果它是两个不同的DB,则需要使用XA事务。本地事务无法从两个不同的数据库中注册资源。
答案 1 :(得分:-1)
正如我所知,首先应该采取行动始终开始,每次出境应该始终开始
<db:mysql-config name="MySQL_Configuration" host="localhost" port="3306" user="root" database="ib_trade" useXaTransactions="true" driverClassName="com.mysql.jdbc.Driver" doc:name="MySQL Configuration"/>
<flow name="transactonmanagerFlow">
<http:listener config-ref="HTTP_Listener_Configuration" path="/ram" doc:name="HTTP"/>
<logger level="INFO" doc:name="Logger" message="%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"/>
<set-payload value="#['hi']" doc:name="Set Payload"/>
<vm:outbound-endpoint exchange-pattern="request-response" path="temp" connector-ref="VM" doc:name="VM">
<xa-transaction action="ALWAYS_JOIN" timeout="10000"/>
</vm:outbound-endpoint>
<logger level="INFO" doc:name="Logger" message="^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"/>
</flow>
<flow name="transactonmanagerFlow1">
<vm:inbound-endpoint exchange-pattern="request-response" path="temp" connector-ref="VM" doc:name="VM">
<xa-transaction action="ALWAYS_BEGIN" timeout="100000"/>
</vm:inbound-endpoint>
<logger level="INFO" doc:name="Logger" message="**************************************************************************"/>
<db:insert config-ref="MySQL_Configuration" transactionalAction="ALWAYS_JOIN" doc:name="Database">
<db:dynamic-query><![CDATA[INSERT INTO `ib_trade`.`swt_symbol`(`idswt_symbol`,`symbol_name`,`symbol_exchange`,`symbol_id`) VALUES ("5","1","1","1");]]></db:dynamic-query>
</db:insert>
<logger message="^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" level="INFO" doc:name="Logger"/>
<db:insert config-ref="MySQL_Configuration" transactionalAction="ALWAYS_JOIN" doc:name="Copy_of_Database">
<db:dynamic-query><![CDATA[INSERT INTO `ib_trade`.`swt_symbol`(`idswt_symbol`,`symbol_name`,`symbol_exchange`,`symbol_id`) VALUES ("5","temp","1","1");]]></db:dynamic-query>
</db:insert>