3 Replies Latest reply on Apr 19, 2011 5:28 AM by lvdberg

    atomic action aborting with 1 threads active

    ashok.ashok.k.vedainformatics.com

      Hi,


      I am fetching mails from a mail box using a quartz scheduler to download the attachments and store it in the database. The problem i am facing is there are 100s of mails and the transaction breaks in between. The error that i see is




      20:30:10,785 WARN  [arjLoggerI18N] [com.arjuna.ats.arjuna.coordinator.BasicAction_58] - Abort of action id 7f000002:b947:4da5b923:2d invoked while multiple threads active within it.
      20:30:10,785 WARN  [arjLoggerI18N] [com.arjuna.ats.arjuna.coordinator.CheckedAction_2] - CheckedAction::check - atomic action 7f000002:b947:4da5b923:2d aborting with 1 threads active!
      



      Everything thing stops working after this error and transaction is rolled back. I understand that there is some limit for the transactions/threads which is exceeding but i am not able to resolve it.


      Please let me know how do i fix this. I have tried increasing the transaction timeout value in jboss-service.xml inside jboss conf directory.


      Any help would be appreciated.


      Thanks in advance.


      --
      Ashok

        • 1. Re: atomic action aborting with 1 threads active
          ashok.ashok.k.vedainformatics.com

          ashok kumar wrote on Apr 13, 2011 11:27:


          Hi,

          I am fetching mails from a mail box using a quartz scheduler to download the attachments and store it in the database. The problem i am facing is there are 100s of mails and the transaction breaks in between. The error that i see is



          20:30:10,785 WARN  [arjLoggerI18N] [com.arjuna.ats.arjuna.coordinator.BasicAction_58] - Abort of action id 7f000002:b947:4da5b923:2d invoked while multiple threads active within it.
          20:30:10,785 WARN  [arjLoggerI18N] [com.arjuna.ats.arjuna.coordinator.CheckedAction_2] - CheckedAction::check - atomic action 7f000002:b947:4da5b923:2d aborting with 1 threads active!
          



          Everything thing stops working after this error and transaction is rolled back. I understand that there is some limit for the transactions/threads which is exceeding but i am not able to resolve it.

          Please let me know how do i fix this. I have tried increasing the transaction timeout value in jboss-service.xml inside jboss conf directory.

          Any help would be appreciated.

          Thanks in advance.

          --
          Ashok



          Also, i can not use native queries in this case.

          • 2. Re: atomic action aborting with 1 threads active
            tausuahmed

            Hi Ashok,


            You can try Annotating to your method with @Transactional(TransactionPropagationType.NEVER) if you dont want to set time out.


            Thanks,
            Tauseef

            • 3. Re: atomic action aborting with 1 threads active
              lvdberg

              Hi,


              The default transaction time out can be changed in your appliocation server (file transaction-jboss-beans.xml) and try to handle retrieving the messagss outside the transaction and processing each message individually inside a transaction.


              Leo