RE: More number of connections got created than maxActive

2007-10-17 Thread Bhaskar
)? Bhaskar -Original Message- From: Konstantin Kolinko [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 16, 2007 8:57 PM To: Tomcat Users List Subject: Re: More number of connections got created than maxActive Isn't it http://issues.apache.org/jira/browse/DBCP-28 ? Connection

Re: More number of connections got created than maxActive

2007-10-17 Thread David Smith
List Subject: Re: More number of connections got created than maxActive Isn't it http://issues.apache.org/jira/browse/DBCP-28 ? Connection leak ... It was fixed in DBCP 1.2.2. You may want to read through the Release History of DBCP for other bugs that have been already found and fixed, http

RE: More number of connections got created than maxActive

2007-10-16 Thread Bhaskar
Users List Subject: Re: More number of connections got created than maxActive Can you determine with certainty that this one pool was responsible for all 121 connections? You don't have any other webapps with their own pool hitting the same db? --David Bhaskar wrote: Hi

Re: More number of connections got created than maxActive

2007-10-16 Thread Konstantin Kolinko
Isn't it http://issues.apache.org/jira/browse/DBCP-28 ? Connection leak ... It was fixed in DBCP 1.2.2. You may want to read through the Release History of DBCP for other bugs that have been already found and fixed, http://commons.apache.org/dbcp/changes-report.html

Re: More number of connections got created than maxActive

2007-10-15 Thread David Smith
Can you determine with certainty that this one pool was responsible for all 121 connections? You don't have any other webapps with their own pool hitting the same db? --David Bhaskar wrote: Hi, I am currently using dbcp 1.2.1 with common pool 1.3. Currently i have following settings in

Re: More number of connections got created than maxActive

2007-10-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bhaskar, Bhaskar wrote: Issue is when i restarted tomcat, i seen there were only 6 connections. After 15 minutes, i see there were 121 connections in netstat against oracle port. Can someone please help me understand the DBCP behaviour here?

Re: More number of connections got created than maxActive

2007-10-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 David, David Smith wrote: Also, if you have a connection leak, then DBCP will continue to create connections to meet demand, even if the old connections are not closed. Since they are no longer in the pool (since they were never returned), they

RE: More number of connections got created than maxActive

2007-10-15 Thread Bhaskar
Yes. I tested it. After stopping tomcat, all connections to oracle went down and only my app was running in tomcat . -Original Message- From: David Smith [mailto:[EMAIL PROTECTED] Sent: Monday, October 15, 2007 6:59 PM To: Tomcat Users List Subject: Re: More number of connections