-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 
Author Message
 Post subject: Performance prob many JNDI-lookups to Websphere transaction
PostPosted: Tue Jan 23, 2007 11:50 am 
Newbie

Joined: Tue Jan 23, 2007 11:42 am
Posts: 1
Hello,
We have observed a performance problem in our J2EE-application caused by several JNDI-lookups on the Websphere-transaction when loading data from a hibernate dao. In the info log of the websphere application server the notification “INFO org.hibernate.util.NamingHelper.JNDI InitialContext properties:{}” is printed several times. We don’t know exactly why this notification is logged out so many times. We have debugged this problem and discovered that these notifications are initiated by the SessionFactoryUtils .doGetSession()-method of Hibernate and results from a JNDI-lookup to the websphere transaction. We asked ourselves why the lookup has to be done several times and is not cached in some way. This lookup is a performance problem because it takes long time (up to 40 seconds). Can anybody explain this observation?

Our environment:
Hibernate 3.2.1
Spring 2.0.2
Websphere Application Server 6.0.2.13

Our hibernate configuration file looks like this:

<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.Oracle9Dialect
</prop>
<prop key="hibernate.connection.datasource">
java:comp/env/jdbc/APMDatasource
</prop>

<prop key="hibernate.transaction.auto_close_session">true</prop>
<prop key="hibernate.transaction.flush_before_completion">
false
</prop>
<prop key="hibernate.transaction.factory_class">
org.hibernate.transaction.CMTTransactionFactory
</prop>
<prop
key="hibernate.transaction.manager_lookup_class">
org.hibernate.transaction.WebSphereExtendedJTATransactionLookup
</prop>
<prop key="hibernate.cache.use_query_cache">false</prop>
<prop key="hibernate.cache.use_second_level_cache">
false
</prop>
<prop key="hibernate.show_sql">false</prop>
</props>
</property>




[23.01.07 14:40:19:953 UTC] 0000000a CacheServiceI I DYNA1001I: Die Instanz von WebSphere Dynamic Cache mit dem Namen service/cache/APMResourceCache wurde ordnungsgemäß initialisiert.
2007-01-23 14:40:20,453 [Thread-1] INFO de.fraport.biaf.apm.server.ejb.BootstrapBean.start() - started with versionversion 1.1
2007-01-23 14:40:20,516 [Thread-1] INFO de.fraport.biaf.apm.server.components.impl.DataExtractionComp.extractInitialData() - started
2007-01-23 14:40:20,578 [Thread-1] INFO org.hibernate.util.NamingHelper.JNDI InitialContext properties:{}
2007-01-23 14:40:20,578 [Thread-1] INFO org.hibernate.util.NamingHelper.JNDI InitialContext properties:{}
2007-01-23 14:40:20,594 [Thread-1] INFO org.hibernate.util.NamingHelper.JNDI InitialContext properties:{}
2007-01-23 14:40:20,594 [Thread-1] INFO org.hibernate.util.NamingHelper.JNDI InitialContext properties:{}
2007-01-23 14:40:21,032 [Thread-1] INFO org.hibernate.util.NamingHelper.JNDI InitialContext properties:{}
2007-01-23 14:40:21,078 [Thread-1] INFO org.hibernate.util.NamingHelper.JNDI InitialContext properties:{}
2007-01-23 14:40:21,078 [Thread-1] INFO org.hibernate.util.NamingHelper.JNDI InitialContext properties:{}
2007-01-23 14:40:21,078 [Thread-1] INFO org.hibernate.util.NamingHelper.JNDI InitialContext properties:{}
2007-01-23 14:41:03,503 [Thread-1] INFO org.hibernate.util.NamingHelper.JNDI InitialContext properties:{}


Top
 Profile  
 
 Post subject:
PostPosted: Thu Apr 19, 2007 3:25 am 
Newbie

Joined: Wed Apr 18, 2007 10:25 am
Posts: 4
Location: Denmark
Hello,

we are seing the exact same problems (SERIOUSLY bad performance) with "hibernate-JPA".

Alone creating an EntityManager from EntityManagerFactory results in 4 lookups.

What happens is that the WebSphereExtendedJTATransactionLookup looks up the "extendedJTATransaction" support named "java:comp/websphere/ExtendedJTATransaction" from a new InitialContext each time a Transaction (TransactionAdapter) is needed.

The way the Hibernate EntityManger (actually the Session) is implemented, this is done 4 times in a row in different places...

The 4 stack-trace from the EntityManager ctor and up is below for documenation:

Code:
   at org.hibernate.util.NamingHelper.getInitialContext(NamingHelper.java:27)
   at org.hibernate.transaction.WebSphereExtendedJTATransactionLookup$TransactionManagerAdapter$TransactionAdapter.<init>(WebSphereExtendedJTATransactionLookup.java:114)
   at org.hibernate.transaction.WebSphereExtendedJTATransactionLookup$TransactionManagerAdapter$TransactionAdapter.<init>(WebSphereExtendedJTATransactionLookup.java:108)
   at org.hibernate.transaction.WebSphereExtendedJTATransactionLookup$TransactionManagerAdapter.getTransaction(WebSphereExtendedJTATransactionLookup.java:82)
   at org.hibernate.ejb.transaction.JoinableCMTTransaction.isTransactionInProgress(JoinableCMTTransaction.java:45)
   at org.hibernate.ejb.transaction.JoinableCMTTransaction.tryJoiningTransaction(JoinableCMTTransaction.java:59)
   at org.hibernate.ejb.transaction.JoinableCMTTransactionFactory.isTransactionInProgress(JoinableCMTTransactionFactory.java:27)
   at org.hibernate.jdbc.JDBCContext.isTransactionInProgress(JDBCContext.java:187)
   at org.hibernate.jdbc.JDBCContext.registerSynchronizationIfPossible(JDBCContext.java:159)
   at org.hibernate.impl.SessionImpl.checkTransactionSynchStatus(SessionImpl.java:1867)
   at org.hibernate.impl.SessionImpl.isOpen(SessionImpl.java:320)
   at org.hibernate.ejb.AbstractEntityManagerImpl.joinTransaction(AbstractEntityManagerImpl.java:463)
   at org.hibernate.ejb.AbstractEntityManagerImpl.postInit(AbstractEntityManagerImpl.java:82)
   at org.hibernate.ejb.EntityManagerImpl.<init>(EntityManagerImpl.java:37)
Code:
   at org.hibernate.util.NamingHelper.getInitialContext(NamingHelper.java:27)
   at org.hibernate.transaction.WebSphereExtendedJTATransactionLookup$TransactionManagerAdapter$TransactionAdapter.<init>(WebSphereExtendedJTATransactionLookup.java:114)
   at org.hibernate.transaction.WebSphereExtendedJTATransactionLookup$TransactionManagerAdapter$TransactionAdapter.<init>(WebSphereExtendedJTATransactionLookup.java:108)
   at org.hibernate.transaction.WebSphereExtendedJTATransactionLookup$TransactionManagerAdapter.getTransaction(WebSphereExtendedJTATransactionLookup.java:82)
   at org.hibernate.ejb.transaction.JoinableCMTTransaction.isTransactionInProgress(JoinableCMTTransaction.java:34)
   at org.hibernate.ejb.transaction.JoinableCMTTransactionFactory.isTransactionInProgress(JoinableCMTTransactionFactory.java:28)
   at org.hibernate.jdbc.JDBCContext.isTransactionInProgress(JDBCContext.java:187)
   at org.hibernate.jdbc.JDBCContext.registerSynchronizationIfPossible(JDBCContext.java:159)
   at org.hibernate.impl.SessionImpl.checkTransactionSynchStatus(SessionImpl.java:1867)
   at org.hibernate.impl.SessionImpl.isOpen(SessionImpl.java:320)
   at org.hibernate.ejb.AbstractEntityManagerImpl.joinTransaction(AbstractEntityManagerImpl.java:463)
   at org.hibernate.ejb.AbstractEntityManagerImpl.postInit(AbstractEntityManagerImpl.java:82)
   at org.hibernate.ejb.EntityManagerImpl.<init>(EntityManagerImpl.java:37)
Code:
   at org.hibernate.util.NamingHelper.getInitialContext(NamingHelper.java:27)
   at org.hibernate.transaction.WebSphereExtendedJTATransactionLookup$TransactionManagerAdapter$TransactionAdapter.<init>(WebSphereExtendedJTATransactionLookup.java:114)
   at org.hibernate.transaction.WebSphereExtendedJTATransactionLookup$TransactionManagerAdapter$TransactionAdapter.<init>(WebSphereExtendedJTATransactionLookup.java:108)
   at org.hibernate.transaction.WebSphereExtendedJTATransactionLookup$TransactionManagerAdapter.getTransaction(WebSphereExtendedJTATransactionLookup.java:82)
   at org.hibernate.jdbc.JDBCContext.registerSynchronizationIfPossible(JDBCContext.java:164)
   at org.hibernate.impl.SessionImpl.checkTransactionSynchStatus(SessionImpl.java:1867)
   at org.hibernate.impl.SessionImpl.isOpen(SessionImpl.java:320)
   at org.hibernate.ejb.AbstractEntityManagerImpl.joinTransaction(AbstractEntityManagerImpl.java:463)
   at org.hibernate.ejb.AbstractEntityManagerImpl.postInit(AbstractEntityManagerImpl.java:82)
   at org.hibernate.ejb.EntityManagerImpl.<init>(EntityManagerImpl.java:37)
Code:
   at org.hibernate.util.NamingHelper.getInitialContext(NamingHelper.java:27)
   at org.hibernate.transaction.WebSphereExtendedJTATransactionLookup$TransactionManagerAdapter$TransactionAdapter.<init>(WebSphereExtendedJTATransactionLookup.java:114)
   at org.hibernate.transaction.WebSphereExtendedJTATransactionLookup$TransactionManagerAdapter$TransactionAdapter.<init>(WebSphereExtendedJTATransactionLookup.java:108)
   at org.hibernate.transaction.WebSphereExtendedJTATransactionLookup$TransactionManagerAdapter.getTransaction(WebSphereExtendedJTATransactionLookup.java:82)
   at org.hibernate.transaction.CMTTransaction.getTransaction(CMTTransaction.java:91)
   at org.hibernate.transaction.CMTTransaction.registerSynchronization(CMTTransaction.java:156)
   at org.hibernate.ejb.AbstractEntityManagerImpl.joinTransaction(AbstractEntityManagerImpl.java:482)
   at org.hibernate.ejb.AbstractEntityManagerImpl.postInit(AbstractEntityManagerImpl.java:82)
   at org.hibernate.ejb.EntityManagerImpl.<init>(EntityManagerImpl.java:37)


Now, I've looked at the similar implementation in OpenJPA (0.9.6) that according to a post at IBM DeveloperWorks is "done right".

In OpenJPA, the extended transaction support instance is basically only look'ed up once and then stored in a static (look at OpenJPA's AutomaticManagedRuntime and WASManagedRuntime for reference).

So, I've hacked the Hibernate (3-2-3) implementation of WebSphereExtendedJTATransactionLookup to bascially do the same...

The following lines (at about line 108) are changed in my "hacked" version of WebSphereExtendedJTATransactionLookup.

Code:
         private static Object extendedJTATransaction;

      public class TransactionAdapter implements Transaction {
         
         private TransactionAdapter(Properties props) {
            try {
               if (extendedJTATransaction == null) {
               extendedJTATransaction = NamingHelper.getInitialContext(props)
                  .lookup("java:comp/websphere/ExtendedJTATransaction");
               }
            }
            catch (NamingException ne) {
               throw new HibernateException(ne);
            }
         }
...


Basically the extendedJTATransaction is taken out as instance variable in the inner class TransactionAdapter and put as static in WebSphereExtendedJTATransactionLookup.

Now, it is only look'ed up once.

Kind Regards

Jesper Udby
Freelance I/T consultant
Denmark :-)


Top
 Profile  
 
 Post subject:
PostPosted: Thu Apr 19, 2007 8:27 am 
Newbie

Joined: Wed Apr 18, 2007 10:25 am
Posts: 4
Location: Denmark
Update: After nice conversation with Max Rydahl, we agreed that the extended transaction support instance did not have to be a static, but would do fine as a normal attribute of WebSphereExtendedJTATransactionLookup.

A patch has been reported in JIRA: http://opensource.atlassian.com/project ... e/HHH-2580

Jesper Udby


Top
 Profile  
 
 Post subject:
PostPosted: Wed May 02, 2007 12:21 am 
Newbie

Joined: Wed Jan 03, 2007 8:10 pm
Posts: 4
experienced the same problem of poor performance. patch did the trick with performance increasing 3 fold. thanks.


Top
 Profile  
 
 Post subject:
PostPosted: Tue May 08, 2007 9:56 am 
Newbie

Joined: Wed Apr 18, 2007 10:25 am
Posts: 4
Location: Denmark
Hello,

unfortunately the "patch" has bascially been rejected by the Hibernate code gurus as being "not correct":

Quote:
Steve Ebersole: Sorry, I prefer correctness over performance.


so, it is not going to make it into release 3.2.4 as expected :-(

Rgds

Jesper Udby


Top
 Profile  
 
 Post subject:
PostPosted: Sat May 12, 2007 1:25 pm 
Newbie

Joined: Wed Apr 18, 2007 10:25 am
Posts: 4
Location: Denmark
Just in order to avoid some possible confusion:

Mr. Ebersole seems to have changed his mind and did some minor modifications to WebSphereExtendedJTATransactionLookup before closing the 3.2.4 build. (see http://fisheye.jboss.org/browse/Hiberna ... va?r=11498)


He also put my name in as if I'm the author.

I'm not - I made the extendedJTATransaction object an instance of the WebSphereExtendedJTATransactionLookup class. According to a conversation with Max Rydahl this would ensure only one instance per EntityManagerFactory, which makes perfectly sense.

Mr. Ebersoles change makes it an instance of the TransactionManagerAdapter inner class. I don't know the inner workings of Hibernate core enough to be able to decide if they are the same. But the implementations definately differ.

I have not and are not going to test Mr. Ebersoles change.

So, if you need the performance version (and not the "correct" one according to Mr. Ebersole), take the attachment from HHH-2580.

I've got an e-mail from the IBM WebSphere Transactions Architect confirming my implementation is the "most performant".

Quote:
I can confirm that WebSphere's ExtendedJTATransaction implementation is a stateless accessor object that needs only to be looked up once and not for each transaction.

The most performant use of the class is to look it up once and cache it, exactly as you suggest.


Rgds

Jesper Udby

[/quote]


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 11:58 am 
Newbie

Joined: Thu Aug 30, 2007 12:02 pm
Posts: 8
Just thought I would share my experience.

I had to performance tune an application which had a problem with the WebSphereExtendedJTATransactionLookup in terms of performance. Enormous problems.

By investigating, it turned out that the problems could be fixed by simply wrapping the services into a single transaction. Since this was read-only (reports), developer didn't surround the service with a single transaction which created a lot of calls to WebSphereExtendedJTATransactionLookup.

I had almost the same performance improvements by either replacing WebSphereExtendedJTATransactionLookup with WebSphereTransactionManagerLookup or simply wrap the service with a transaction.

Combining the two optimizations, didn't show further improvements.

Maybe some of you have problems for the same reason.


Top
 Profile  
 
 Post subject: Re: Performance prob many JNDI-lookups to Websphere transaction
PostPosted: Mon May 10, 2010 12:58 pm 
Newbie

Joined: Mon May 10, 2010 12:46 pm
Posts: 1
Hi,

Issue - Performance of the webapp has degraded after using the following configuration. Trying to achieve Session-per-request
<prop key="hibernate.transaction.factory_class">org.hibernate.transaction.CMTTransactionFactory</prop>
<prop key="hibernate.transaction.manager_lookup_class">org.hibernate.transaction.WebSphereExtendedJTATransactionLookup</prop>

Some info on technologies that we are using for the webapp
WAS 6.0
Hibernate - 3.3.1
Spring - tried with the following two versions of spring - 1.2-rc2 and 2.5.6 - same behavior in terms of performance.

When we do not use the above configuration in the spring applicationcontext.xml file, performance is better which is counter intuitive because it would session/operation as opposed to session/request.

Please help...


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.