• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Tim Cooke
Sheriffs:
  • Rob Spoor
  • Liutauras Vilda
  • paul wheaton
Saloon Keepers:
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
  • Piet Souris
Bartenders:
  • Stephan van Hulst

javax.transaction.SystemException: Timeout during commit processing

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a thread running in one transaction. this transaction creates many child transactions(running on requiresNew.. about(8)).Once the child transactions are committed, and when the main transaction is reached, we get a java.rmi.RemoteException: BEA1-6ABE41DE2592116A15E2; nested exception is:
javax.transaction.SystemException: Timeout during commit processing
at weblogic.ejb.container.internal.EJBRuntimeUtils.throwRemoteException(EJBRuntimeUtils.java:95)
at weblogic.ejb.container.internal.BaseEJBObject.postInvoke1(BaseEJBObject.java:587)
at weblogic.ejb.container.internal.StatelessEJBObject.postInvoke1(StatelessEJBObject.java:72)
at weblogic.ejb.container.internal.BaseEJBObject.postInvokeTxRetry(BaseEJBObject.java:381) ..

The main transaction only gets a next val of a sequence. We are running on an XA driver with weblogic server 9. There are only select queries in the main transactions.
The process takes about 10 minutes. JTA transaction time out is at 4 hrs

The following are my weblogic configuration for JDBC transaction is as follow:
Set XA Transaction Timeout :true
XA Transaction Timeout:0
XA Retry Duration::300
XA Retry Interval:60
Keep XA Connection Until Transaction Complete:true
Need Transaction Context On Close:true
XA End Only Once:true
Keep Connection Open On Release::true


Please do help... Thanks in advance..
 
Did Steve tell you that? Fuh - Steve. Just look at this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic