RE: Console-Output of AbandonedObjectPool

2007-05-31 Thread Propes, Barry L
getting a little off-topic (but on-topic for your other post): don't you have a test-server with the identical environment as the prod-server where you could try to recreate the same race-conditions? cheers gregor - Yes, but I don't have the traffic or re

Re: Console-Output of AbandonedObjectPool

2007-05-31 Thread Gregor Schneider
hi barry, thanks for the offer, but i guess i've found the solution: we're using around 15 different servlets, each making use of it's own datasource belonging to a different connection-pool: so it looks, as if the message always shows up when each pool is created, meaning, you're right with yo

RE: Console-Output of AbandonedObjectPool

2007-05-31 Thread Propes, Barry L
t message is only getting generated once, pending a restart which wipes out the console messages anyway. -Original Message- From: Gregor Schneider [mailto:[EMAIL PROTECTED] Sent: Thursday, May 31, 2007 11:10 AM To: Tomcat Users List Subject: Re: Console-Output of AbandonedObjectPool hi barr

RE: Console-Output of AbandonedObjectPool

2007-05-31 Thread Propes, Barry L
ist Subject: Re: Console-Output of AbandonedObjectPool hi barry, from my understanding, the output seems to be created every time when the pool needs to create a new physical connection to the database, i.e. you've specified "maxActive=10", only 5 are used & busy, a 6th gets cr

Re: Console-Output of AbandonedObjectPool

2007-05-31 Thread Gregor Schneider
hi barry, from my understanding, the output seems to be created every time when the pool needs to create a new physical connection to the database, i.e. you've specified "maxActive=10", only 5 are used & busy, a 6th gets created due to an additional request and -> voilá, there you go. anyways, s

RE: Console-Output of AbandonedObjectPool

2007-05-31 Thread Propes, Barry L
3:44 AM To: Tomcat Users List Subject: Re: Console-Output of AbandonedObjectPool Unless things changed in the last 1.5 years (when I looked it up last time): DBCP uses System.out.println() and not regular logging for the output of exactly those lines :( Regards, Rainer Gregor Schneider wrote:

Re: Console-Output of AbandonedObjectPool

2007-05-31 Thread Gregor Schneider
Aaargl so that means there's no possibility to get rid of this output? I mean I don't need a possibility to divert it into a log-file, just getting rid of the output would help... Cheers Gregor -- what's puzzlin' you, is the nature of my game gpgp-fp: 79A84FA526807026795E4209D3B3FE028B3170B

Re: Console-Output of AbandonedObjectPool

2007-05-31 Thread Rainer Jung
Unless things changed in the last 1.5 years (when I looked it up last time): DBCP uses System.out.println() and not regular logging for the output of exactly those lines :( Regards, Rainer Gregor Schneider wrote: Hi guys, we're using a JDBC-datasource with the following definition in $CATAL

Console-Output of AbandonedObjectPool

2007-05-31 Thread Gregor Schneider
Hi guys, we're using a JDBC-datasource with the following definition in $CATALIN_HOME/conf/Catalina/localhost/IndexCLUE.xml: In catalina.out, we always find the following output: AbandonedObjectPool is used ([EMAIL PROTECTED] e) LogAbandoned: false RemoveAbandoned: true RemoveAbando