]
Karl Nicholas edited comment on WFLY-7212 at 9/28/16 5:22 PM:
--------------------------------------------------------------
Okay, that seems to have been the problem. I didn't think through the fact that I was
also starting up a CMT, though in hindsight it should have been obvious, especially since
I didn't make the first bean a BMT because of other @scheduled events that I wanted to
be CMT. Now I can choose which way I want it to be and even use pure Java EE if that's
important. Thanks once again.
was (Author: karlnicholas):
Okay, that seems to have been the problem. I didn't think through the fact that I was
also starting up a CMT, though in hindsight it should have been obvious, especially since
I didn't make the first bean a BMT because of other @scheduled events that I wanted to
be CMT. Thanks once again.
Cannot use BMT in @Schedule service
-----------------------------------
Key: WFLY-7212
URL:
https://issues.jboss.org/browse/WFLY-7212
Project: WildFly
Issue Type: Feature Request
Components: EE, EJB, Transactions
Affects Versions: 10.0.0.Final, 10.1.0.Final
Environment: Wildfly 10.1.0-Final. Windows 10. MySql 5.5.
Reporter: Karl Nicholas
Labels: arjuna, ejb, scheduled, scheduled_tasks, transaction
When injecting a `@Resource private UserTransaction tx;`, a `TransactionReaper`
terminates kills my `UserTransaction` after 5 minutes no matter what. Since it's a
batch update, I need more than 5 minutes.
Here is a simple piece of code that doesn't work:
{code:java}
@EJB private TestFiveMinuteBatch testFiveMinuteBatch;
@Schedule(second="0", minute="8", hour="10",
persistent=false) // 03:30 am (12:30 am CA ) every day
public void updateTest() {
testFiveMinuteBatch.test();
}
@Stateless
@TransactionManagement(TransactionManagementType.BEAN)
public class TestFiveMinuteBatch {
@Resource private UserTransaction tx;
public void test() {
for ( int i=0; i < 6; ++i ) {
System.out.println("Minute: " + i);
try {
Thread.sleep(60000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
{code}
After 5 minutes I get this warning:
{noformat}
10:13:00,034 WARN [com.arjuna.ats.arjuna] (Transaction Reaper) ARJUNA012117:
TransactionReaper::check timeout for TX 0:ffffac1f6209:-595568e4:57e80419:e in state RUN
10:13:00,039 WARN [com.arjuna.ats.arjuna] (Transaction Reaper Worker 0) ARJUNA012121:
TransactionReaper::doCancellations worker Thread[Transaction Reaper Worker 0,5,main]
successfully canceled TX 0:ffffac1f6209:-595568e4:57e80419:e
10:13:00,130 INFO [stdout] (EJB default - 1) Minute: 5
{noformat}
After service terminates I get this error:
{noformat}
10:14:00,131 WARN [com.arjuna.ats.arjuna] (EJB default - 1) ARJUNA012077: Abort called
on already aborted atomic action 0:ffffac1f6209:-595568e4:57e80419:e
10:14:00,163 ERROR [org.jboss.as.ejb3.timer] (EJB default - 1) WFLYEJB0020: Error
invoking timeout for timer: [id=8a8f4546-28d0-491e-85a6-f668f58ab5dc
timedObjectId=opca-ear.opca-ejb.ScheduledService auto-timer?:true persistent?:false
timerService=org.jboss.as.ejb3.timerservice.TimerServiceImpl@31fe8c3e
initialExpiration=null intervalDuration(in milli sec)=0 nextExpiration=Mon Sep 26 10:08:00
PDT 2016 timerState=IN_TIMEOUT info=null]: javax.ejb.EJBTransactionRolledbackException:
Transaction rolled back
at
org.jboss.as.ejb3.tx.CMTTxInterceptor.handleEndTransactionException(CMTTxInterceptor.java:137)
at org.jboss.as.ejb3.tx.CMTTxInterceptor.endTransaction(CMTTxInterceptor.java:117)
at
org.jboss.as.ejb3.tx.TimerCMTTxInterceptor.endTransaction(TimerCMTTxInterceptor.java:67)
at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:279)
at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:327)
at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:239)
at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:340)
at
org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocationContextInterceptor.java:41)
at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:340)
at
org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100)
at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:340)
at
org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:437)
at
org.jboss.as.ejb3.concurrency.ContainerManagedConcurrencyInterceptor.processInvocation(ContainerManagedConcurrencyInterceptor.java:110)
at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:340)
at
org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFactory.java:64)
at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:340)
at
org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50)
at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:340)
at
org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupInterceptor.java:54)
at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:340)
at
org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:64)
at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:340)
at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:356)
at
org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:636)
at
org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:61)
at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:340)
at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:356)
at
org.jboss.invocation.PrivilegedWithCombinerInterceptor.processInvocation(PrivilegedWithCombinerInterceptor.java:80)
at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:340)
at
org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:61)
at
org.jboss.as.ejb3.timerservice.TimedObjectInvokerImpl.callTimeout(TimedObjectInvokerImpl.java:99)
at
org.jboss.as.ejb3.timerservice.CalendarTimerTask.invokeBeanMethod(CalendarTimerTask.java:64)
at
org.jboss.as.ejb3.timerservice.CalendarTimerTask.callTimeout(CalendarTimerTask.java:53)
at org.jboss.as.ejb3.timerservice.TimerTask.run(TimerTask.java:157)
at
org.jboss.as.ejb3.timerservice.TimerServiceImpl$Task$1.run(TimerServiceImpl.java:1215)
at
org.wildfly.extension.requestcontroller.RequestController$QueuedTask$1.run(RequestController.java:497)
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)
Caused by: javax.transaction.RollbackException: WFLYEJB0447: Transaction
'TransactionImple < ac, BasicAction: 0:ffffac1f6209:-595568e4:57e80419:e status:
ActionStatus.ABORTED >' was already rolled back
at org.jboss.as.ejb3.tx.CMTTxInterceptor.endTransaction(CMTTxInterceptor.java:98)
... 38 more
{noformat}