DBCP connection pool exhausted, can I trace borrowed connnections from pool?

2009-06-17 Thread Arrowx7
Using mysql JDBC driver. Somewhere in the appilcation, the connections are drawn from the DBCP pool, and never returned. I did dataSource.getNumActive() and dataSource.getNumIdle(). There are 2 idle connections, and 88 active connections. Somewhere in my web application a process does not

RE: DBCP connection pool exhausted, can I trace borrowed connnections from pool?

2009-06-17 Thread Propes, Barry L
@tomcat.apache.org Subject: DBCP connection pool exhausted, can I trace borrowed connnections from pool? Using mysql JDBC driver. Somewhere in the appilcation, the connections are drawn from the DBCP pool, and never returned. I did dataSource.getNumActive() and dataSource.getNumIdle

Re: DBCP connection pool exhausted, can I trace borrowed connnections from pool?

2009-06-17 Thread Filip Hanik - Dev Lists
set properties removeAbandoned=true removeAbandonedTimeout=60 logAbandoned=true This will expire leaked connections and print out the stack trace from where they were acquired. Filip Arrowx7 wrote: Using mysql JDBC driver. Somewhere in the appilcation, the connections are drawn from the

Re: DBCP connection pool exhausted, can I trace borrowed connnections from pool?

2009-06-17 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Arrow, On 6/17/2009 10:44 AM, Arrowx7 wrote: Using mysql JDBC driver. Somewhere in the appilcation, the connections are drawn from the DBCP pool, and never returned. I did dataSource.getNumActive() and dataSource.getNumIdle(). There are 2 idle