Uploaded image for project: 'JBoss Enterprise Application Platform'
  1. JBoss Enterprise Application Platform
  2. JBEAP-8237

Server being stuck during shudown when transaction probe op is called

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • Major
    • 7.1.0.DR11
    • 7.1.0.DR11
    • Transactions
    • None
    • Hide

      I'm able to reproduce it when running whole crash recovery testcase JPAProxyCrashRecoveryTestCase which contains several test scenarios and normally one of them hit it. Each test scenario run about 3 min and getting it could be a little bit timeconsuming

      git clone http://git.app.eng.bos.redhat.com/git/jbossqe-eap-tests-transactions.gitexport JBOSS_HOME=... (downloadable at http://download.eng.brq.redhat.com/devel/candidates/JBEAP/)
      
      DS_PROPS="-Dds0.db=postgresql -Dds0.jdbc.driver.url=http://www.qa.jboss.com/jdbc-drivers-products/EAP/7.1.0/postgresql94/jdbc4/postgresql-9.4.1209.jar -Dds0.jdbc.xa-class=org.postgresql.xa.PGXADataSource -Dds0.jdbc.url=jdbc:postgresql://gen-vm006.mw.lab.eng.bos.redhat.com:5432/crashrec -Dds0.db.name=crashrec -Dds0.user=crashrec -Dds0.pass=crashrec -Dds0.jdbc.driver.jar=postgresql-driver.jar"
      
      mvn clean verify -am -pl jbossts -DfailIfNoTests=false -fn -Djbossts.noJTS $DS_PROPS -Dtest=JPAProxyCrashRecoveryTestCase
      
      Show
      I'm able to reproduce it when running whole crash recovery testcase JPAProxyCrashRecoveryTestCase which contains several test scenarios and normally one of them hit it. Each test scenario run about 3 min and getting it could be a little bit timeconsuming git clone http: //git.app.eng.bos.redhat.com/git/jbossqe-eap-tests-transactions.gitexport JBOSS_HOME=... (downloadable at http://download.eng.brq.redhat.com/devel/candidates/JBEAP/) DS_PROPS= "-Dds0.db=postgresql -Dds0.jdbc.driver.url=http: //www.qa.jboss.com/jdbc-drivers-products/EAP/7.1.0/postgresql94/jdbc4/postgresql-9.4.1209.jar -Dds0.jdbc.xa-class=org.postgresql.xa.PGXADataSource -Dds0.jdbc.url=jdbc:postgresql://gen-vm006.mw.lab.eng.bos.redhat.com:5432/crashrec -Dds0.db.name=crashrec -Dds0.user=crashrec -Dds0.pass=crashrec -Dds0.jdbc.driver.jar=postgresql-driver.jar" mvn clean verify -am -pl jbossts -DfailIfNoTests= false -fn -Djbossts.noJTS $DS_PROPS -Dtest=JPAProxyCrashRecoveryTestCase

    Description

      I do experience server to be stuck (in intermittent way) during shutdown[1]. I need to use afterwards kill -9 to stop it.

      From my investigation it seems that it's caused by fact that jboss-cli operation :probe does cause XARecoveryModule.periodicWorkFirstPass being called
      https://github.com/jbosstm/narayana/blob/master/ArjunaJTA/jta/classes/com/arjuna/ats/internal/jta/recovery/arjunacore/XARecoveryModule.java#L272

      That way scanState is left at value ScanStates.BETWEEN_PASSES [2]
      https://github.com/jbosstm/narayana/blob/master/ArjunaJTA/jta/classes/com/arjuna/ats/internal/jta/recovery/arjunacore/XARecoveryModule.java#L195

      Now when shutdown of container is being run (you can check attached server.log)
      the periodic recovery is stopped and the scanState is left as it is. At that point
      call of XARecoveryModule#removeXAResourceRecoveryHelper causes thread waits for state IDLE ifinintely. https://github.com/jbosstm/narayana/blob/master/ArjunaJTA/jta/classes/com/arjuna/ats/internal/jta/recovery/arjunacore/XARecoveryModule.java#L110

      You can consult thread dump from time when server gets stuck stacktrace1.log.

      [1]

      "ServerService Thread Pool -- 74" #375 prio=5 os_prio=0 tid=0x00007f33944a5000 nid=0x6e5c in Object.wait() [0x00007f33718f5000]
         java.lang.Thread.State: WAITING (on object monitor)
      	at java.lang.Object.wait(Native Method)
      	- waiting on <0x0000000080d9a6e0> (a java.util.concurrent.atomic.AtomicInteger)
      	at java.lang.Object.wait(Object.java:502)
      	at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.waitForScanState(XARecoveryModule.java:1002)
      	at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.removeXAResourceRecoveryHelper(XARecoveryModule.java:110)
      	- locked <0x0000000080d9a6e0> (a java.util.concurrent.atomic.AtomicInteger)
      	at com.arjuna.ats.jbossatx.jta.RecoveryManagerService.removeXAResourceRecovery(RecoveryManagerService.java:129)
      	at org.jboss.jca.core.tx.jbossts.XAResourceRecoveryRegistryImpl.removeXAResourceRecovery(XAResourceRecoveryRegistryImpl.java:63)
      	at org.jboss.as.connector.subsystems.datasources.XaDataSourceService.stopService(XaDataSourceService.java:66)
      	- locked <0x0000000081c6ec48> (a org.jboss.as.connector.subsystems.datasources.XaDataSourceService)
      	at org.jboss.as.connector.subsystems.datasources.AbstractDataSourceService$1.run(AbstractDataSourceService.java:179)
      	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
      	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
      	at java.lang.Thread.run(Thread.java:745)
      	at org.jboss.threads.JBossThread.run(JBossThread.java:320)
      
         Locked ownable synchronizers:
      	- <0x00000000e7df81b8> (a java.util.concurrent.ThreadPoolExecutor$Worker)
      

      [2]

      Thread [management-handler-thread - 5] (Suspended (breakpoint at line 149 in XARecoveryModule))	
      	owns: XARecoveryModule  (id=219)	
      	owns: AtomicAction  (id=844)	
      	owns: ObjStoreBrowser  (id=845)	
      	XARecoveryModule.periodicWorkFirstPass() line: 149	
      	XARecoveryModule.getNewXAResource(Xid) line: 272	
      	XARecoveryModule.getNewXAResource(XAResourceRecord) line: 310	
      	XAResourceRecord.getNewXAResource() line: 1303	
      	XAResourceRecord.restore_state(InputObjectState, int) line: 1054	
      	AtomicAction(BasicAction).restore_state(InputObjectState, int) line: 1180	
      	AtomicAction(BasicAction).activate(String) line: 488	
      	AtomicAction(BasicAction).activate() line: 451	
      	ActionBean$GenericAtomicActionWrapper.activate() line: 391	
      	ActionBean.createWrapper(UidWrapper, boolean) line: 107	
      	ActionBean.<init>(UidWrapper) line: 93	
      	NativeConstructorAccessorImpl.newInstance0(Constructor<?>, Object[]) line: not available [native method]	
      	NativeConstructorAccessorImpl.newInstance(Object[]) line: 62	
      	DelegatingConstructorAccessorImpl.newInstance(Object[]) line: 45	
      	Constructor<T>.newInstance(Object...) line: 423	
      	UidWrapper.createMBean() line: 196	
      	ObjStoreBrowser.createBean(Uid, String) line: 481	
      	ObjStoreBrowser.probe() line: 435	
      	NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method]	
      	NativeMethodAccessorImpl.invoke(Object, Object[]) line: 62	
      	DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 43	
      	Method.invoke(Object, Object...) line: 498	
      	Trampoline.invoke(Method, Object, Object[]) line: 71	
      	NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method]	
      	NativeMethodAccessorImpl.invoke(Object, Object[]) line: 62	
      	DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 43	
      	Method.invoke(Object, Object...) line: 498	
      	MethodUtil.invoke(Method, Object, Object[]) line: 275	
      	StandardMBeanIntrospector.invokeM2(Method, Object, Object[], Object) line: 112	
      	StandardMBeanIntrospector.invokeM2(Object, Object, Object[], Object) line: 46	
      	StandardMBeanIntrospector(MBeanIntrospector<M>).invokeM(M, Object, Object[], Object) line: 237	
      	PerInterface<M>.invoke(Object, String, Object[], String[], Object) line: 138	
      	StandardMBeanSupport(MBeanSupport<M>).invoke(String, Object[], String[]) line: 252	
      	DefaultMBeanServerInterceptor.invoke(ObjectName, String, Object[], String[]) line: 819	
      	JmxMBeanServer.invoke(ObjectName, String, Object[], String[]) line: 801	
      	PluggableMBeanServerImpl$TcclMBeanServer.invoke(ObjectName, String, Object[], String[]) line: 1512	
      	PluggableMBeanServerImpl.invoke(ObjectName, String, Object[], String[]) line: 731	
      	LogStoreProbeHandler.probeTransactions(MBeanServer, boolean) line: 157	
      	LogStoreProbeHandler.execute(OperationContext, ModelNode) line: 186	
      	OperationContextImpl(AbstractOperationContext).executeStep(AbstractOperationContext$Step) line: 921	
      	OperationContextImpl(AbstractOperationContext).processStages() line: 664	
      	OperationContextImpl(AbstractOperationContext).executeOperation() line: 383	
      	OperationContextImpl.executeOperation() line: 1390	
      	ModelControllerImpl.internalExecute(ModelNode, OperationMessageHandler, ModelController$OperationTransactionControl, OperationAttachments, OperationStepHandler, boolean, boolean) line: 419	
      	ModelControllerImpl.lambda$execute$1(Operation, OperationMessageHandler, ModelController$OperationTransactionControl) line: 240	
      	277244299.run() line: not available	
      	SecurityIdentity.runAs(PrivilegedAction<T>) line: 193	
      	ModelControllerImpl.execute(Operation, OperationMessageHandler, ModelController$OperationTransactionControl) line: 240	
      	ModelControllerClientOperationHandler$ExecuteRequestHandler.doExecute(ModelNode, int, ManagementRequestContext<Void>, CompletedCallback) line: 217	
      	ModelControllerClientOperationHandler$ExecuteRequestHandler.access$400(ModelControllerClientOperationHandler$ExecuteRequestHandler, ModelNode, int, ManagementRequestContext, ModelControllerClientOperationHandler$CompletedCallback) line: 137	
      	ModelControllerClientOperationHandler$ExecuteRequestHandler$1$1.run() line: 161	
      	ModelControllerClientOperationHandler$ExecuteRequestHandler$1$1.run() line: 157	
      	SecurityIdentity.runAs(PrivilegedExceptionAction<T>) line: 212	
      	AccessAuditContext.doAs(SecurityIdentity, InetAddress, PrivilegedExceptionAction<T>) line: 185	
      	ModelControllerClientOperationHandler$ExecuteRequestHandler$1.execute(ManagementRequestContext<Void>) line: 157	
      	ManagementRequestContextImpl$1.doExecute() line: 70	
      	ManagementRequestContextImpl$1(ManagementRequestContextImpl$AsyncTaskRunner).run() line: 160	
      	ThreadPoolExecutor.runWorker(ThreadPoolExecutor$Worker) line: 1142	
      	ThreadPoolExecutor$Worker.run() line: 617	
      	JBossThread(Thread).run() line: 745	
      	JBossThread.run() line: 320
      

      Attachments

        1. PeriodicRecoveryStackTrace.txt
          23 kB
        2. server.log
          620 kB
        3. stacktrace1.log
          26 kB

        Issue Links

          Activity

            People

              rhn-engineering-mmusgrov Michael Musgrove
              ochaloup@redhat.com Ondrej Chaloupka (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: