[jboss-user] [Performance Tuning] - Re: No ManagedConnections available within configured blocki

2008-09-04 Thread dnolte
Please try to add following tag to your *-ds.xml file : track-statementstrue/track-statements This gives you hints where unclosed connection occur. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4174233#4174233 Reply to the post :

[jboss-user] [Performance Tuning] - Re: No ManagedConnections available within configured blocki

2007-01-14 Thread prdspt
Hi, I'm using JBossWeb1.0.0GA and hibernate for DB activities and Spring framework for transactions. I'm getting No Managed Connections when I'm testing some update/insert operations which happens only in the linux platform but not on a windows platform. Is JBossWeb having some compatibility

[jboss-user] [Performance Tuning] - Re: No ManagedConnections available within configured blocki

2006-11-17 Thread bilange
It seems that our pb went away. Our initial code was closing connections only (in the finally clause) assuming that this will de facto close it. It seems that it's not enough for this pool. In also closing resultsets and prepared statements, our leak is now gone. Apparently some non closed

[jboss-user] [Performance Tuning] - Re: No ManagedConnections available within configured blocki

2006-11-17 Thread bilange
I spoke too soon... we still see a leakage... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3986948#3986948 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3986948 ___ jboss-user

[jboss-user] [Performance Tuning] - Re: No ManagedConnections available within configured blocki

2006-11-17 Thread plexiq
I finally found our leakage, but havent been able to fix it yet. It seems java.lang.Thread objects created by JBossMQ do not get garbage collected for some reason. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3986952#3986952 Reply to the post :

[jboss-user] [Performance Tuning] - Re: No ManagedConnections available within configured blocki

2006-11-14 Thread plexiq
Also having the same problem on Postgres. Any hints highly welcome. (I did tipple-check any connection-closing code.) I ll try the jamonapi.com proxy to check again tho. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3985755#3985755 Reply to the post :

[jboss-user] [Performance Tuning] - Re: No ManagedConnections available within configured blocki

2006-11-12 Thread bilange
Did you ever find what the issue is/was? I'm seeing the same problem with Postgres... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3985292#3985292 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3985292

[jboss-user] [Performance Tuning] - Re: No ManagedConnections available within configured blocki

2006-08-31 Thread wandi
Man, it could sounds stupid but you close every connection? I have a similar problem and my app was using more than one datasoure, at end I don close every connection (for each datasorce)... so the problem of ManagedConnection arise. ... | } finally { | if (pstmYY != null)

[jboss-user] [Performance Tuning] - Re: No ManagedConnections available within configured blocki

2006-08-31 Thread stevesouza
If you can use a jamon proxy driver connection you will be able to see if you have closed all of your db connections or not. http://www.jamonapi.com View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3968816#3968816 Reply to the post :

[jboss-user] [Performance Tuning] - Re: No ManagedConnections available within configured blocki

2006-08-26 Thread sauser
Hi, I am using Jboss 4.0.2 and encountering the same No ManagedConnections exception after the blocking timeout which I believe leads to Transaction Timeout and Transaction Rollback exception - Conn-pool configurations are Min-pool-Size = 10 Max-pool-Size = 80 Blocking timeout = 3 ms