JBoss : Transaction is not active: tx=TransactionImple < ac, BasicAction: abc status: ActionStatus.ABORTED >
Problem
Closing a connection for you. Please close them yourself: org.jboss.resource.adapter.jdbc.jdk5.WrappedConnectionJDK5@6e3a0a96
2021-11-16 12:23:43,715 WARN [com.arjuna.ats.arjuna.logging.arjLoggerI18N] (Thread-1371) [com.arjuna.ats.arjuna.coordinator.TransactionReaper_7] - TransactionReaper::doCancellations worker Thread[Thread-1371,5,jboss] successfully canceled TX a11267b:ff8e:61915e7e:1413e57
2021-11-16 12:23:43,715 WARN [com.arjuna.ats.arjuna.logging.arjLoggerI18N] (Thread-1371) [com.arjuna.ats.arjuna.coordinator.BasicAction_58] - Abort of action id a11267b:ff8e:61915e7e:1413e5d invoked while multiple threads active within it.
2021-11-16 12:23:43,715 WARN [com.arjuna.ats.arjuna.logging.arjLoggerI18N] (Thread-1371) [com.arjuna.ats.arjuna.coordinator.CheckedAction_2] - CheckedAction::check - atomic action a11267b:ff8e:61915e7e:1413e5d aborting with 1 threads active!
2021-11-16 12:23:43,731 WARN [com.arjuna.ats.arjuna.logging.arjLoggerI18N] (WorkerThread#73[10.72.65.85:55546]) [com.arjuna.ats.arjuna.coordinator.BasicAction_40] - Abort called on already aborted atomic action a11267b:ff8e:61915e7e:1413e57
2021-11-16 12:23:43,809 WARN [com.arjuna.ats.arjuna.logging.arjLoggerI18N] (Thread-19) [com.arjuna.ats.arjuna.coordinator.TransactionReaper_18] - TransactionReaper::check timeout for TX a11267b:ff8e:61915e7e:1413e5d in state CANCEL
2021-11-16 12:23:43,840 WARN [org.hibernate.util.JDBCExceptionReporter] (WorkerThread#178[10.72.65.85:55540]) SQL Error: 0, SQLState: null
2021-11-16 12:23:43,840 ERROR [org.hibernate.util.JDBCExceptionReporter] (WorkerThread#178[10.72.65.85:55540]) Transaction is not active: tx=TransactionImple < ac, BasicAction: a11267b:ff8e:61915e7e:1413e5d status: ActionStatus.ABORTED >; - nested throwable: (javax.resource.ResourceException: Transaction is not active: tx=TransactionImple < ac, BasicAction: a11267b:ff8e:61915e7e:1413e5d status: ActionStatus.ABORTED >)
Possible Solution
<property
name="transactionTimeout">1800</property>
2: Increase the value of txReaperTimeout in jbossts-properties.xml inside the jboss’s conf folder
name="com.arjuna.ats.arjuna.coordinator.txReaperTimeout"
value="240000"/>
Comments
Post a Comment