Re: Tomcat connection pool 9.0.52 uses more then configured maxActive connections

2023-05-22 Thread Mark Thomas
On 22/05/2023 09:45, Stefan López Romero wrote: Hello, I have the problem that the Tomcat connection pool uses more than the maxActive connections. In my Dropwizard application I have configured a maxSize of 30, but I found the following message in the logs. Timeout: Pool empty. Unable to

Tomcat connection pool 9.0.52 uses more then configured maxActive connections

2023-05-22 Thread Stefan López Romero
Hello, I have the problem that the Tomcat connection pool uses more than the maxActive connections. In my Dropwizard application I have configured a maxSize of 30, but I found the following message in the logs. Timeout: Pool empty. Unable to fetch a connection in 15 seconds, none available

Re: tomcat connection pool per database (postgres)

2020-11-25 Thread Rob Sargent
For those scoring at home, I'm going to try managing pool-per-user myself for the potential jmx gain and as I said, two will be amazing success. On 11/25/20 9:40 AM, Christopher Schultz wrote: Phil and Rob, On 11/24/20 11:26, Phil Steitz wrote: On 11/24/20 8:52 AM, Rob Sargent wrote: Perhap

Re: tomcat connection pool per database (postgres)

2020-11-25 Thread Christopher Schultz
Phil and Rob, On 11/24/20 11:26, Phil Steitz wrote: On 11/24/20 8:52 AM, Rob Sargent wrote: Perhaps I read too much into the description of "The tomcat JDBC Connection Pool" page? TheJDBC Connection Pool|org.apache.tomcat.jdbc.pool|is a replacement or an alternative to theApache Commons DBCP

Re: tomcat connection pool per database (postgres)

2020-11-24 Thread Mark Thomas
On 24/11/2020 16:26, Phil Steitz wrote: > > > On 11/24/20 8:52 AM, Rob Sargent wrote: >> Perhaps I read too much into the description of "The tomcat JDBC >> Connection Pool" page? >> >> TheJDBC Connection Pool|org.apache.tomcat.jdbc.pool|is a replacement >> or an alternative to theApache Commons

Re: tomcat connection pool per database (postgres)

2020-11-24 Thread Phil Steitz
On 11/24/20 8:52 AM, Rob Sargent wrote: Perhaps I read too much into the description of "The tomcat JDBC Connection Pool" page? TheJDBC Connection Pool|org.apache.tomcat.jdbc.pool|is a replacement or an alternative to theApache Commons DBCP connection pool

Re: tomcat connection pool per database (postgres)

2020-11-24 Thread Rob Sargent
Perhaps I read too much into the description of "The tomcat JDBC Connection Pool" page? TheJDBC Connection Pool|org.apache.tomcat.jdbc.pool|is a replacement or an alternative to theApache Commons DBCP connection pool. I reacted to the "replacement" bit. Are

Re: tomcat connection pool per database (postgres)

2020-11-24 Thread Phil Steitz
On 11/24/20 8:14 AM, Rob Sargent wrote: Thanks. I get it. But... - seems this solution raises the footprint of the pooler, with number-of-users * minimum-connection-count etc - would it be beyond the pale for the pooler to maintain username-connectionList maps? Per response elsethread, se

Re: tomcat connection pool per database (postgres)

2020-11-24 Thread Rob Sargent
Thanks.  I get it. But... - seems this solution raises the footprint of the pooler, with number-of-users * minimum-connection-count etc - would it be beyond the pale for the pooler to maintain username-connectionList maps? Thankfully, I'll be wildly successful if I have two concurrent users

Re: tomcat connection pool per database (postgres)

2020-11-24 Thread Christopher Schultz
Rob, On 11/19/20 12:38, Rob Sargent wrote: Since the connection URL names a specific postgres database is it standard practice to have a pool per target database?  (Switching databases in postgres amounts to closing/opening a connection.) I generally consider a database connection pool to be

tomcat connection pool per database (postgres)

2020-11-19 Thread Rob Sargent
Since the connection URL names a specific postgres database is it standard practice to have a pool per target database?  (Switching databases in postgres amounts to closing/opening a connection.)

Re: tomcat connection pool not closing properly

2018-04-26 Thread Chris Cheshire
On Thu, Apr 26, 2018 at 10:23 AM, Chris Cheshire wrote: [snip] I've done some more testing with older and newer versions of tomcat, and also swapping to use commons dbcp. All of them exhibit the same behaviour. So the question becomes is this expected behaviour (previous connection pool instance

tomcat connection pool not closing properly

2018-04-26 Thread Chris Cheshire
[ tomcat 8.5.30, mysql server 5.7.22, connector/j 5.1.46, centos 6, debian 8. ] I recently upgraded my sandboxes from 8.5.24 to 8.5.28 and now .30 and I have noticed that when a webapp is reloaded via the host manager, the associated connection pool is not getting closed down properly in the datab

Re: Tomcat Connection Pool

2016-12-08 Thread Mark Thomas
On 08/12/2016 07:59, Михаил Ткаченко wrote: > Yes but it description is ambiguous for me. What does it means "active > connection"? In use for request to DB? It is the maximum number of connections the pool will keep open to the database at any point in time. Those connections may be actively proc

Re: Tomcat Connection Pool

2016-12-08 Thread Михаил Ткаченко
Yes but it description is ambiguous for me. What does it means "active connection"? In use for request to DB? 08 дек. 2016 г. 10:53 пользователь "Kaloyan Spiridonov" < k.i.spirido...@gmail.com> написал: > Hello, > > As it is described in jdbc connection pool documentation: > > maxActive > > (int)

Re: Tomcat Connection Pool

2016-12-07 Thread Kaloyan Spiridonov
Hello, As it is described in jdbc connection pool documentation: maxActive (int) The maximum number of active connections that can be allocated from this pool at the same time. The default value is 100 Best Regards, Kaloyan On Thu, Dec 8, 2016 at 9:47 AM, Михаил Ткаченко wrote: > Hi! Do you

Tomcat Connection Pool

2016-12-07 Thread Михаил Ткаченко
Hi! Do you tell me what maxActive option means? Is it the amount of all connection in the pool? Or is it max number of connection which in use at the certain moment? Thanks.

Re: Tomcat Connection Pool Problems with XtraBackup

2014-10-13 Thread John Smith
On Sun, Oct 12, 2014 at 5:56 AM, Stefan Mayr wrote: > Hi John, > > Am 11.10.2014 23:30, schrieb John Smith: > >> I'm trying to workout a managed backup scheme on a MySQL production >> database with XtraBackup. According to our DBA, XtraBackup doesn't lock >> the >> database, but issues a series o

Re: Tomcat Connection Pool Problems with XtraBackup

2014-10-12 Thread Stefan Mayr
Hi John, Am 11.10.2014 23:30, schrieb John Smith: I'm trying to workout a managed backup scheme on a MySQL production database with XtraBackup. According to our DBA, XtraBackup doesn't lock the database, but issues a series of SHOW TABLE STATUS commands and then works on the file system level.

Tomcat Connection Pool Problems with XtraBackup

2014-10-11 Thread John Smith
I'm trying to workout a managed backup scheme on a MySQL production database with XtraBackup. According to our DBA, XtraBackup doesn't lock the database, but issues a series of SHOW TABLE STATUS commands and then works on the file system level. Still, just as XtraBackup runs my logs start to blow

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-21 Thread marko lugarič
Hi I guess i should code something like start i.e. 50 (configurable parameter to increase the load) threads and issues queries non stop over jdbc to i.e. 2 database test tables - we should generate enough trasactions to take all pool connections. And I should probably use jdbc connections as defin

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-21 Thread marko lugarič
Hello I guess you are suggesting to compile this class with the changes you propose and test it? regards, marko On Thu, Nov 21, 2013 at 1:58 AM, David Bullock < david.bull...@machaira.com.au> wrote: > Oh, and 'throw e;' at the end of the handler :-) > David Bullock > Machaira Enterprises Pty L

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-20 Thread David Bullock
Oh, and 'throw e;' at the end of the handler :-) David Bullock Machaira Enterprises Pty Ltd PO Box 31 Canowindra NSW 2804 02 6344 1100 http://machaira.com.au/ On 21 November 2013 11:48, David Bullock wrote: > Line 150 of org.apache.tomcat.jdbc.pool.FairBlockingQueue can throw > InterruptedExce

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-20 Thread David Bullock
Line 150 of org.apache.tomcat.jdbc.pool.FairBlockingQueue can throw InterruptedException, which should be handled by: catch (InterruptedException e) { lock.lock(); waiters.remove(c); // prevent future threads from offering to this thread, since we are about to die lock.unlock(); if (c.

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-20 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Marko, On 11/20/13, 12:07 PM, marko lugarič wrote: > I have repeated the test with logAbandoned set to "true" and left > it half hour after pool is empty. There are a lot of exceptions > (Pool empty. Unable to fetch a connection in 15 seconds and Po

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-20 Thread marko lugarič
Hello I have repeated the test with logAbandoned set to "true" and left it half hour after pool is empty. There are a lot of exceptions (Pool empty. Unable to fetch a connection in 15 seconds and Pool wait interrupted) but i don't know what exactly to search (search with Abandoned did not produce

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-20 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Marko, On 11/20/13, 8:14 AM, marko lugarič wrote: > Hello > > The tests are run in the following manner: around 5 min to start > the server and connect all clients. Then I can apply load from > clients: on the graph I applied only half load for fir

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-20 Thread marko lugarič
Hello The tests are run in the following manner: around 5 min to start the server and connect all clients. Then I can apply load from clients: on the graph I applied only half load for first seven minutes an then full load but this is not required - I can go with full load after all clients connec

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-19 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Marko, On 11/19/13, 10:16 AM, marko lugarič wrote: > About using useEquals="false" property I guess we defined when we > started using this pool. After reading the documentation i guess it > is better to leave it out (it has no effect on the test -

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-19 Thread David Bullock
Marko wrote: > In that case debugging looks like the only option? Nobody yet disputed: > The 'leakiness' of the pool is actually in > org.apache.tomcat.jdbc.pool.FairBlockingQueue#poll() > If the line (!c.await(timeout, unit)) exits via an > InterruptedException, the the 'exchangecountdownlatc

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-19 Thread marko lugarič
turn="true", testOnIdle="true", > > propagateInterruptState="true" - did not help > > > > > > So the last option was to change connection pool: we used C3P0 > > connection pool with properties that are similar in meaning as > > Tomca

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-19 Thread David Bullock
On 19 November 2013 14:59, Caldarale, Charles R wrote: >> From: David Bullock [mailto:david.bull...@machaira.com.au] >> Subject: Re: Tomcat connection pool "bleeding" under heavy load > >> In PooledConnection#borrow(int,String,String) when handling >> Inte

RE: Tomcat connection pool "bleeding" under heavy load

2013-11-18 Thread Caldarale, Charles R
> From: David Bullock [mailto:david.bull...@machaira.com.au] > Subject: Re: Tomcat connection pool "bleeding" under heavy load > In PooledConnection#borrow(int,String,String) when handling > InterruptedException, the code there does: >Thread.interrupted();//cle

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-18 Thread David Bullock
re > soon gone since 5 connection can handle them. Here is the configuration from > server.xml for C3P0: > > name="jdbc/ChiDS" > auth="Container" > type="com.mchange.v2.c3p0.ComboPooledDataSource" > dataSourceName="jdbc/ChiDS" > factory="org.apache.naming.factory.BeanFactory" > driverClass="com.microsoft.sqlserver.jdbc.SQLServerDriver" > jdbcUrl="jdbc:sqlserver://*;databaseName=chiDB" > user="*" > password="*" > initialPoolSize="2" > minPoolSize="2" > maxPoolSize="5" > preferredTestQuery="SELECT 1" > testConnectionOnCheckin="true" > idleConnectionTestPeriod="30" > numHelperThreads="5"/> > > Currently our customer raised maxActive to bigger number but i guess this > will > not do once they will start increasing the number of clients (our > application > has big amount of transactions) and they will have to change connection > pool. > Are there any additional configuration setting I can try on Tomcat > connection > pool, otherwise this looks like a bug? > > regards, Marko - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: Tomcat connection pool "bleeding" under heavy load

2013-11-18 Thread Christopher Schultz
must have either interrupted the Thread > attempting checkout! java.lang.InterruptedException . Then we > reduce the load and exceptions are soon gone since 5 connection can > handle them. Here is the configuration from server.xml for C3P0: > > type="com.mchange.v2.c3p0.Com

Tomcat connection pool "bleeding" under heavy load

2013-11-18 Thread marko lugarič
ction pool. Are there any additional configuration setting I can try on Tomcat connection pool, otherwise this looks like a bug? regards, Marko

Re: Changing tomcat connection pool size through jmx

2013-03-15 Thread amit shah
posed through JMX). > >> > >> Attributes list the properties of an mbean and some properties can be > changed on the fly by double-clicking them and setting a new value. I > believe that's how you would adjust the connection pool properties. Does > that work for you? >

Re: Changing tomcat connection pool size through jmx

2013-03-08 Thread Daniel Mikusa
st the connection pool properties. Does >> that work for you? >> >> Dan >> >> >>> >>> >>> On Thu, Mar 7, 2013 at 9:50 PM, Daniel Mikusa wrote: >>> >>>> On Mar 7, 2013, at 9:59 AM, amit shah wrote: >>>> >>&

Re: Changing tomcat connection pool size through jmx

2013-03-08 Thread amit shah
would adjust the connection pool properties. Does > that work for you? > >> > >> Dan > >> > >> > >>> > >>> > >>> On Thu, Mar 7, 2013 at 9:50 PM, Daniel Mikusa > wrote: > >>> > >>>&

Re: Changing tomcat connection pool size through jmx

2013-03-08 Thread pid
r you? >> >> Dan >> >> >>> >>> >>> On Thu, Mar 7, 2013 at 9:50 PM, Daniel Mikusa wrote: >>> >>>> On Mar 7, 2013, at 9:59 AM, amit shah wrote: >>>> >>>>> Hello, >>>>> I use

Re: Changing tomcat connection pool size through jmx

2013-03-07 Thread Amit
Dan > > >> >> >> On Thu, Mar 7, 2013 at 9:50 PM, Daniel Mikusa wrote: >> >>> On Mar 7, 2013, at 9:59 AM, amit shah wrote: >>> >>>> Hello, >>>> I use tomcat connection pool in my web application by using two >&g

Re: Changing tomcat connection pool size through jmx

2013-03-07 Thread Daniel Mikusa
-clicking them and setting a new value. I believe that's how you would adjust the connection pool properties. Does that work for you? Dan > > > On Thu, Mar 7, 2013 at 9:50 PM, Daniel Mikusa wrote: > >> On Mar 7, 2013, at 9:59 AM, amit shah wrote: >> >>&g

Re: Changing tomcat connection pool size through jmx

2013-03-07 Thread amit shah
wrote: > > > Hello, > > I use tomcat connection pool in my web application by using two > > jars - tomcat-jdbc-7.0.34.jar and tomcat-juli-7.0.34.jar. I want to > change > > the connection pool size through jmx but I could not find any defined jmx > > operation for doin

Re: Changing tomcat connection pool size through jmx

2013-03-07 Thread Daniel Mikusa
On Mar 7, 2013, at 9:59 AM, amit shah wrote: > Hello, >I use tomcat connection pool in my web application by using two > jars - tomcat-jdbc-7.0.34.jar and tomcat-juli-7.0.34.jar. I want to change > the connection pool size through jmx but I could not find any defined jmx >

Re: [OT] Tomcat Connection Pool

2011-02-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rahul, (Marking off-topic as this a JDBC driver/database issue unrelated to Tomcat). On 2/23/2011 9:13 AM, Rahul Kumar wrote: > Tomcat version: 6.0 Not that it matters, but what version of 6.0? There are 32 or so of them. > Problem Statement: > >

Tomcat Connection Pool

2011-02-23 Thread Rahul Kumar
Hi, Can anyone help me regarding issue with connection pool for Tomcat? Tomcat version: 6.0 OS: Linux Database: Oracle 10g . Problem Statement: When server is idle for long period of time thread hangs for waiting the DBMS to return with response. I have tried all the possible combination co

Re: tomcat connection pool - status and future?

2010-09-25 Thread Mark Thomas
On 24/09/2010 18:11, Jason Pringle wrote: > > On 09/23/2010 2:27 PM, Mark Thomas wrote: > >> Several release attempts have failed due to a lack of interest. > > Lack of interest by whom? The development team or the tomcat community? Anyone apart from the original developer. You'll see a little

RE: tomcat connection pool - status and future?

2010-09-24 Thread Caldarale, Charles R
> From: Christopher Schultz [mailto:ch...@christopherschultz.net] > Subject: Re: tomcat connection pool - status and future? > Is he in the /US/ National Guard? Yes. > He lives in Colorado, right? Last I heard. (Haven't actually seen him in about two years.) - Chuck T

Re: tomcat connection pool - status and future?

2010-09-24 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chuck, On 9/24/2010 2:04 PM, Caldarale, Charles R wrote: >> From: Christopher Schultz [mailto:ch...@christopherschultz.net] >> Subject: Re: tomcat connection pool - status and future? > >> To answer your question of markt: tomc

RE: tomcat connection pool - status and future?

2010-09-24 Thread Caldarale, Charles R
> From: Christopher Schultz [mailto:ch...@christopherschultz.net] > Subject: Re: tomcat connection pool - status and future? > To answer your question of markt: tomcat-dbcp has stagnated due > to lack of interest from the Tomcat dev team itself. Also note that Filip is off on Na

Re: tomcat connection pool - status and future?

2010-09-24 Thread Christopher Schultz
you didn't take their code, slap an interface on top of it, and then sell it as "See Three Pee Oh". At any rate, it looks like the LGPL will be a blocker for you. Bummer. > I don't necessarily agree with the rules, I just have to follow them. I understand. >>> The &q

RE: tomcat connection pool - status and future?

2010-09-24 Thread Jason Pringle
27;s been done"). I don't necessarily agree with the rules, I just have to follow them. > > The "feature page" of the tomcat connection pool > > (http://people.apache.org/~fhanik/jdbc-pool/jdbc-pool.html) seems > > quite promising, but to be honest, it concer

RE: tomcat connection pool - status and future?

2010-09-24 Thread Jason Pringle
On 09/23/2010 2:27 PM, Mark Thomas wrote: > Several release attempts have failed due to a lack of interest. Lack of interest by whom? The development team or the tomcat community? > That said, $work is using this as the default pool in a commercial > product based on Tomcat with minimal issue

Re: tomcat connection pool - status and future?

2010-09-24 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jeff, On 9/24/2010 11:14 AM, Jeff Hubbs wrote: > On 9/24/10 10:24 AM, Christopher Schultz wrote: >> >> The biggest problem with C3P0 is that it's unsupported (I heard... I >> can't find anywhere that it says the project is actually dead, but it's >>

Re: tomcat connection pool - status and future?

2010-09-24 Thread Jeff Hubbs
On 9/24/10 10:24 AM, Christopher Schultz wrote: The biggest problem with C3P0 is that it's unsupported (I heard... I can't find anywhere that it says the project is actually dead, but it's been over 3 years since their last release, and it's clearly labeled "beta"). It looks like they might be

Re: tomcat connection pool - status and future?

2010-09-24 Thread Christopher Schultz
ays the project is actually dead, but it's been over 3 years since their last release, and it's clearly labeled "beta"). It looks like they might be thinking about another point release. What's wrong with LGPL? I'm not trying to start a holy war... just curious about y

Re: tomcat connection pool - status and future?

2010-09-23 Thread Mark Thomas
On 23/09/2010 13:26, Jason Pringle wrote: > > I've recently become aware of the new-ish tomcat connection pool > (http://people.apache.org/~fhanik/jdbc-pool/) which appears to be at version > 1.0.8.5 (a January 2010 release?). > > Before I recommend we begin usi

tomcat connection pool - status and future?

2010-09-23 Thread Jason Pringle
I've recently become aware of the new-ish tomcat connection pool (http://people.apache.org/~fhanik/jdbc-pool/) which appears to be at version 1.0.8.5 (a January 2010 release?). Before I recommend we begin using this in a production situation, I'd like to gather a bit of data on it.

Re: [ANNOUNCE] Beta candidate for Tomcat connection pool

2008-11-14 Thread Filip Hanik - Dev Lists
Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Filip, Filip Hanik - Dev Lists wrote: The Apache Tomcat team announces the immediate availability of Apache Tomcat JDBC Connection Pool The download page for this component says "Tomcat 6". Is this component co

Re: [ANNOUNCE] Beta candidate for Tomcat connection pool

2008-11-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Filip, Filip Hanik - Dev Lists wrote: > The Apache Tomcat team announces the immediate availability of > Apache Tomcat JDBC Connection Pool The download page for this component says "Tomcat 6". Is this component compatible with Tomcat 5.5 as well? I

Re: Problem with Beta candidate for Tomcat connection pool

2008-11-14 Thread Filip Hanik - Dev Lists
Mark, this was fixed in 1.0.3-beta, thanks for helping us out! http://tomcat.apache.org/dev/dist/jdbc-pool/1.0-beta/ Filip Mark Shifman wrote: I installed the new Tomcat connection pool and it worked ok yesterday. First thing this morning it threw this exception below. (I snipped out a

Re: Problem with Beta candidate for Tomcat connection pool

2008-11-14 Thread Filip Hanik - Dev Lists
Thanks Mark for the report, no not at all. I will push out a fix today. Filip Mark Shifman wrote: I installed the new Tomcat connection pool and it worked ok yesterday. First thing this morning it threw this exception below. (I snipped out a bunch of stuff but can send the whole thing if it

Problem with Beta candidate for Tomcat connection pool

2008-11-14 Thread Mark Shifman
I installed the new Tomcat connection pool and it worked ok yesterday. First thing this morning it threw this exception below. (I snipped out a bunch of stuff but can send the whole thing if it would help) My resource definition from context.xml is Have I done something stupid that lets stale

Re: [ANNOUNCE] Beta candidate for Tomcat connection pool

2008-11-13 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Len, Len Popp wrote: > A brief list of reasons is given in the link from Filip's post: > https://issues.apache.org/bugzilla/show_bug.cgi?id=46038 Whoops! Sorry. I should have read that before I opened my big mouth. > The most important reason IMO is

Re: [ANNOUNCE] Beta candidate for Tomcat connection pool

2008-11-13 Thread Len Popp
A brief list of reasons is given in the link from Filip's post: https://issues.apache.org/bugzilla/show_bug.cgi?id=46038 The most important reason IMO is that you can't build Tomcat with a recent JDK. See: https://issues.apache.org/bugzilla/show_bug.cgi?id=43147 -- Len On Thu, Nov 13, 2008 at 1

RE: [ANNOUNCE] Beta candidate for Tomcat connection pool

2008-11-13 Thread Caldarale, Charles R
> From: Christopher Schultz [mailto:[EMAIL PROTECTED] > Subject: Re: [ANNOUNCE] Beta candidate for Tomcat connection pool > > I'm sure this is documented somewhere, but why is Tomcat creating its > own connection pool instead of continuing to use commons-dbcp? https://issues

Re: [ANNOUNCE] Beta candidate for Tomcat connection pool

2008-11-13 Thread Tim Funk
http://tomcat.markmail.org/message/4acbkimgilfkcdru?q=+list:org%2Eapache%2Etomcat%2Edev+ -Tim Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Filip, Filip Hanik - Dev Lists wrote: The Apache Tomcat team announces the immediate availability of Apache Tomcat JDBC Con

Re: [ANNOUNCE] Beta candidate for Tomcat connection pool

2008-11-13 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Filip, Filip Hanik - Dev Lists wrote: > The Apache Tomcat team announces the immediate availability of > Apache Tomcat JDBC Connection Pool I'm sure this is documented somewhere, but why is Tomcat creating its own connection pool instead of continui

[ANNOUNCE] Beta candidate for Tomcat connection pool

2008-11-12 Thread Filip Hanik - Dev Lists
The Apache Tomcat team announces the immediate availability of Apache Tomcat JDBC Connection Pool Apache Tomcat Connectors version 1.0.1-beta is a new module within the Tomcat development realm, aimed to provide a high performance, concurrent and extensible connection pool to the Tomcat commun

RE: Tomcat Connection pool

2007-05-29 Thread David Short
In your code where you reference the JNDI name "jdbc", reference "jdbc/orcl" instead. -Original Message- From: Ligade, Shailesh (Contr) (Mission Systems) [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 29, 2007 5:16 AM To: Tomcat Users List Subject: Tomcat Connection p

RE: Tomcat Connection pool

2007-05-29 Thread Ligade, Shailesh (Contr) (Mission Systems)
Stephens [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 29, 2007 10:00 AM To: Tomcat Users List Subject: Re: Tomcat Connection pool Yes post your web.xml where with your tags. Looks like a typo in there. On 5/29/07, Ligade, Shailesh (Contr) (Mission Systems) < [EMAIL PROTECTED]>

Re: Tomcat Connection pool

2007-05-29 Thread Daniel Stephens
Yes post your web.xml where with your tags. Looks like a typo in there. On 5/29/07, Ligade, Shailesh (Contr) (Mission Systems) < [EMAIL PROTECTED]> wrote: Greetings, I am running Tomcat 5.x, and I have many webapps deployed and working under tomcat. I want my connection pool to be used from

Re: Tomcat Connection pool

2007-05-29 Thread Szabolcs Márton
maybe you need some settings at the web.xml as weel? (just guess) regards, Szabi 2007/5/29, Ligade, Shailesh (Contr) (Mission Systems) <[EMAIL PROTECTED]>: Greetings, I am running Tomcat 5.x, and I have many webapps deployed and working under tomcat. I want my connection pool to be used from

Tomcat Connection pool

2007-05-29 Thread Ligade, Shailesh (Contr) (Mission Systems)
Greetings, I am running Tomcat 5.x, and I have many webapps deployed and working under tomcat. I want my connection pool to be used from any application. When I modify server.xml in conf directory to add my connection, listed below:

Tomcat Connection Pool config

2005-12-07 Thread dan stephens
Has anyone else tried to use the connection pool in Tomcat with the below parameters.. removeAbandonedTRUE removeAbandonedTimeout10 logAbandonedTRUE I can see that when I first issue a connect I get below, and I can use that datasource. But according to the commons-dbcp