What causes Arjuna 1603 (Could not find new XAReso

2019-01-31 16:50发布

I have no experience with Arjuna, but my log file gets filled with:

2011-06-27 09:25:18,021 WARN  [com.arjuna.ats.jta] (Periodic Recovery) ARJUNA-16037 Could not find new XAResource to use for recovering non-serializable XAResource  formatId=131076, gtrid_length=29, bqual_length=28, tx_uid=0:ffff0a2012b7:126a:4e006635:2ba0, node_name=1, branch_uid=0:ffff0a2012b7:126a:4e006635:2ba1, eis_name=unknown eis name

2011-06-27 09:25:18,021 WARN  [com.arjuna.ats.jta] (Periodic Recovery) ARJUNA-16038 No XAResource to recover < formatId=131076, gtrid_length=29, bqual_length=28, tx_uid=0:ffff0a2012b7:126a:4e006635:2ba0, node_name=1, branch_uid=0:ffff0a2012b7:126a:4e006635:2ba1, eis_name=unknown eis name >

Those two messages always come together, and they are written periodically. The count of these messages increases with the uptime of the JBoss server instance. Since my application (it's an MDB consuming messages from a remote ActiveMQ) has some issues and these are the only log messages I get, I really want to know the reason for it.

3条回答
不美不萌又怎样
2楼-- · 2019-01-31 17:24

To get rid of the error, stop the jboss instance and remove the folder $JBOSS/standalone/data/tx-object-store

查看更多
Melony?
3楼-- · 2019-01-31 17:29

Here are explanations:

Maybe your transaction lasts too long and you get into the timing issue described in the second link. Have you increased the server's transaction timeout ?

查看更多
地球回转人心会变
4楼-- · 2019-01-31 17:34

See JBossDeveloper Forum#thread 221033

Essential part:

The simplest solution: Find this path {JBOSS_HOME}/standalone/data/tx-object-store/ShadowNoFileLockStore/defaultStore/StateManager/BasicAction/TwoPhaseCoordinator/AtomicAction

Inside AtomicAction find some transaction related files and after removing those files this issue will be solved.

But forum contains reasons and more 'system friendly' solution.

查看更多
登录 后发表回答