-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
 Post subject: c3p0 awaitAcquire / Connection pool drops to 0
PostPosted: Mon Aug 07, 2006 9:08 pm 
Beginner
Beginner

Joined: Mon Nov 07, 2005 11:10 pm
Posts: 30
Hibernate version: 3.1.3

I'm using c3p0-0.9.0.jar that comes with Hibernate 3.1.3.

Occassionally, the connection pool drops to zero and no new connections are made even if Hibernate requests them. Thus, SessionFactory.openSession() will just hang forever.

It is basically this bug:
http://sourceforge.net/tracker/index.ph ... tid=383691

In my hibernate.cfg.xml, I have the following:

Code:
    <property name="hibernate.c3p0.acquire_increment">2</property>
    <property name="hibernate.c3p0.idle_test_period">60</property>
    <property name="hibernate.c3p0.timeout">60</property>
    <property name="hibernate.c3p0.min_size">1</property>
    <property name="hibernate.c3p0.max_size">10</property>
    <property name="hibernate.c3p0.max_statements">0</property>


In c3p0.properties, I have the following:

Code:
c3p0.testConnectionOnCheckout=true
c3p0.testConnectionsOnCheckout=true
c3p0.initialPoolSize=3
c3p0.preferredTestQuery=select 1
c3p0.maxIdleTime=300
c3p0.minPoolSize=3
c3p0.maxPoolSize=20
c3p0.maxStatements=0
c3p0.maxStatementsPerConnection=20
c3p0.acquireIncrement=2
c3p0.idleConnectionTestPeriod=300
c3p0.debug=true
com.mchange.v2.log.MLog=com.mchange.v2.log.log4j.Log4jMLog


You will see the log below where awaitAvailable() just waits and waits, and the connection pool size is 0:

Code:
2006-08-07 17:09:41,602 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:09:41 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:41,603 [Timer-0] DEBUG - EXPIRED resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1362ca8 ---> age: 65193   max: 60000 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:41,603 [Timer-0] DEBUG - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1362ca8 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:41,603 [Timer-0] DEBUG - trace com.mchange.v2.resourcepool.BasicResourcePool@14d1d41 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c)
2006-08-07 17:09:41,603 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG - ENTER METHOD: closeAll( com.sybase.jdbc2.jdbc.SybConnection@df574d )! -- num_connections: 6
2006-08-07 17:09:41,603 [Timer-0] DEBUG - EXPIRED resource: com.mchange.v2.c3p0.impl.NewPooledConnection@779d17 ---> age: 65116   max: 60000 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:41,603 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG - Set of statements for connection: [com.sybase.jdbc2.jdbc.SybPreparedStatement@124b62a, com.sybase.jdbc2.jdbc.SybPreparedStatement@12eddc0, com.sybase.jdbc2.jdbc.SybPreparedStatement@1f01381, com.sybase.jdbc2.jdbc.SybPreparedStatement@f687a3]; size: 4
2006-08-07 17:09:41,603 [Timer-0] DEBUG - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@779d17 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:41,604 [Timer-0] DEBUG - trace com.mchange.v2.resourcepool.BasicResourcePool@14d1d41 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c)
2006-08-07 17:09:41,604 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG - ENTER METHOD: closeAll( com.sybase.jdbc2.jdbc.SybConnection@17ba2e9 )! -- num_connections: 5
2006-08-07 17:09:41,604 [Timer-0] DEBUG - EXPIRED resource: com.mchange.v2.c3p0.impl.NewPooledConnection@25211b ---> age: 65033   max: 60000 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:41,604 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG - Set of statements for connection: [com.sybase.jdbc2.jdbc.SybPreparedStatement@b7b831, com.sybase.jdbc2.jdbc.SybPreparedStatement@19c1f49, com.sybase.jdbc2.jdbc.SybPreparedStatement@1c9edf0,com.sybase.jdbc2.jdbc.SybPreparedStatement@146b111]; size: 4
2006-08-07 17:09:41,604 [Timer-0] DEBUG - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@25211b [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:41,605 [Timer-0] DEBUG - trace com.mchange.v2.resourcepool.BasicResourcePool@14d1d41 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c)
2006-08-07 17:09:41,605 [Timer-0] DEBUG - EXPIRED resource: com.mchange.v2.c3p0.impl.NewPooledConnection@ea7211 ---> age: 64933   max: 60000 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:41,605 [Timer-0] DEBUG - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@ea7211 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:41,605 [Timer-0] DEBUG - trace com.mchange.v2.resourcepool.BasicResourcePool@14d1d41 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c)
2006-08-07 17:09:41,605 [Timer-0] DEBUG - EXPIRED resource: com.mchange.v2.c3p0.impl.NewPooledConnection@163058b ---> age: 64841   max: 60000 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:41,605 [Timer-0] DEBUG - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@163058b [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:41,606 [Timer-0] DEBUG - trace com.mchange.v2.resourcepool.BasicResourcePool@14d1d41 [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c)
2006-08-07 17:09:41,606 [Timer-0] DEBUG - EXPIRED resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1e5a0cf ---> age: 64755   max: 60000 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:41,606 [Timer-0] DEBUG - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1e5a0cf [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:41,606 [Timer-0] DEBUG - trace com.mchange.v2.resourcepool.BasicResourcePool@14d1d41 [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c)
2006-08-07 17:09:41,612 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG - closeAll(): com.mchange.v2.c3p0.stmt.PerConnectionMaxOnlyStatementCache stats -- total size: 16; checked out: 0; num connections: 4; num keys: 16
2006-08-07 17:09:41,614 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG - ENTER METHOD: closeAll( com.sybase.jdbc2.jdbc.SybConnection@1b7a8c5 )! -- num_connections: 4
2006-08-07 17:09:41,614 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG - Set of statements for connection: [com.sybase.jdbc2.jdbc.SybPreparedStatement@12b76b9, com.sybase.jdbc2.jdbc.SybPreparedStatement@143c268, com.sybase.jdbc2.jdbc.SybPreparedStatement@17f493,com.sybase.jdbc2.jdbc.SybPreparedStatement@1962cfa]; size: 4
2006-08-07 17:09:41,617 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG - ENTER METHOD: closeAll( com.sybase.jdbc2.jdbc.SybConnection@1c6a374 )! -- num_connections: 3
2006-08-07 17:09:41,618 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG - Set of statements for connection: [com.sybase.jdbc2.jdbc.SybPreparedStatement@13fc0bb, com.sybase.jdbc2.jdbc.SybPreparedStatement@198f08c, com.sybase.jdbc2.jdbc.SybPreparedStatement@10a1b36, com.sybase.jdbc2.jdbc.SybPreparedStatement@e2e29c]; size: 4
2006-08-07 17:09:41,618 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG - closeAll(): com.mchange.v2.c3p0.stmt.PerConnectionMaxOnlyStatementCache stats -- total size: 8; checked out: 0; num connections: 2; num keys: 8
2006-08-07 17:09:41,619 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG - ENTER METHOD: closeAll( com.sybase.jdbc2.jdbc.SybConnection@1c995f6 )! -- num_connections: 2
2006-08-07 17:09:41,619 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG - Set of statements for connection: [com.sybase.jdbc2.jdbc.SybPreparedStatement@e4445e, com.sybase.jdbc2.jdbc.SybPreparedStatement@671d0d, com.sybase.jdbc2.jdbc.SybPreparedStatement@118ae23, com.sybase.jdbc2.jdbc.SybPreparedStatement@b874d2]; size: 4
2006-08-07 17:09:49,238 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:09:49 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:09:56,740 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:09:56 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:10:04,242 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:10:04 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:10:11,743 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:10:11 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:10:19,247 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:10:19 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:10:26,749 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:10:26 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:10:34,251 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:10:34 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:10:41,753 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:10:41 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:10:49,363 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:10:49 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:10:56,865 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:10:56 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:11:04,367 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:11:04 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:11:11,869 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:11:11 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:11:19,373 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:11:19 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:11:26,875 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:11:26 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:11:34,376 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:11:34 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:11:41,878 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:11:41 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:11:49,490 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:11:49 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]


< ...snip.... >

2006-08-07 17:14:19,787 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:14:19 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:14:27,289 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:14:27 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:14:34,790 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:14:34 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:14:39,066 [Timer-0] DEBUG - Refurbishing idle resources - Mon Aug 07 17:14:39 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:14:39,066 [Timer-0] DEBUG - trace com.mchange.v2.resourcepool.BasicResourcePool@14d1d41 [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c)
2006-08-07 17:14:42,292 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:14:42 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:14:49,913 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:14:49 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]

< ...snip.... >

2006-08-07 17:19:35,441 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:19:35 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:19:39,068 [Timer-0] DEBUG - Refurbishing idle resources - Mon Aug 07 17:19:39 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:19:39,068 [Timer-0] DEBUG - trace com.mchange.v2.resourcepool.BasicResourcePool@14d1d41 [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c)
2006-08-07 17:19:42,944 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:19:42 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:19:50,572 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:19:50 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:19:58,073 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:19:58 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]

< ...snip.... >

2006-08-07 17:24:39,070 [Timer-0] DEBUG - Refurbishing idle resources - Mon Aug 07 17:24:39 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:24:39,070 [Timer-0] DEBUG - trace com.mchange.v2.resourcepool.BasicResourcePool@14d1d41 [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c)
2006-08-07 17:24:43,590 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:24:43 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:24:51,219 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:24:51 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:24:58,720 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:24:58 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:25:06,221 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:25:06 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:25:13,722 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:25:13 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:25:17,395 [DeliveryReceiptJMSConsumer1] DEBUG - awaitAvailable(): com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c2006-08-07 17:25:17,395 [DeliveryReceiptJMSConsumer1] DEBUG - trace com.mchange.v2.resourcepool.BasicResourcePool@14d1d41 [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c)
2006-08-07 17:25:20,012 [DeliveryReceiptJMSConsumer2] DEBUG - awaitAvailable(): com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c2006-08-07 17:25:20,012 [DeliveryReceiptJMSConsumer2] DEBUG - trace com.mchange.v2.resourcepool.BasicResourcePool@14d1d41 [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c)
2006-08-07 17:25:21,224 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:25:21 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:25:28,726 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:25:28 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:25:35,327 [DeliveryReceiptJMSConsumer3] DEBUG - awaitAvailable(): com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c
2006-08-07 17:25:35,327 [DeliveryReceiptJMSConsumer3] DEBUG - trace com.mchange.v2.resourcepool.BasicResourcePool@14d1d41 [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c)
2006-08-07 17:25:36,228 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:25:36 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:25:37,332 [DeliveryReceiptJMSConsumer4] DEBUG - awaitAvailable(): com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c
2006-08-07 17:25:37,333 [DeliveryReceiptJMSConsumer4] DEBUG - trace com.mchange.v2.resourcepool.BasicResourcePool@14d1d41 [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ae90c)
2006-08-07 17:25:43,730 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:25:43 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]
2006-08-07 17:25:51,350 [Timer-0] DEBUG - Checking for expired resources - Mon Aug 07 17:25:51 EST 2006 [com.mchange.v2.resourcepool.BasicResourcePool@14d1d41]


Top
 Profile  
 
 Post subject: connection pool drops to 0 using two threads
PostPosted: Tue Mar 25, 2008 5:22 am 
Newbie

Joined: Tue Sep 26, 2006 9:14 am
Posts: 5
Hi,
I think i have the same problem as posted above.
I'm using hibernate 3.1, c3p0 9.1.2
when i'm running a slightly heavy sql, the cpu time suddenly goes to c3p0 connection pool check, for some reason using two thread. I have no timeouts or timers telling c3p0 to make those checks, and it seems that the two threads are locking each other resources...

c3p0 settings:
<property name="hibernate.c3p0.acquire_increment">3</property>
<property name="hibernate.c3p0.idle_test_period">0</property>
<property name="hibernate.c3p0.timeout">1800</property>
<property name="hibernate.c3p0.max_size">10</property>
<property name="hibernate.c3p0.max_statements">0</property>
<property name="hibernate.c3p0.min_size">3</property>

c3p0.testConnectionOnCheckin=false
c3p0.maxConnectionAge=0
c3p0.checkoutTimeout=1000
c3p0.breakAfterAcquireFailure=false
c3p0.autoCommitOnClose=false
c3p0.acquireRetryDelay=1000
c3p0.acquireRetryAttempts=30

this is the log (main dealing with my sql, then suddenly two threads are coming in for more then 10 seconds, and then main is coming back):

2008-03-19 08:06:08,756, [main] DEBUG org.hibernate.jdbc.AbstractBatcher - preparing statement
2008-03-19 08:06:08,756, [main] DEBUG org.hibernate.loader.Loader - bindNamedParameters() 7990 -> locationSetID [1]
2008-03-19 08:06:08,756, [main] DEBUG org.hibernate.type.IntegerType - binding '7990' to parameter: 1
2008-03-19 08:06:08,756, [main] DEBUG org.hibernate.loader.Loader - bindNamedParameters() 8065 -> rtRatePlanID [2]
2008-03-19 08:06:08,756, [main] DEBUG org.hibernate.type.IntegerType - binding '8065' to parameter: 2
2008-03-19 08:06:09,413, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:09 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1f31652 ---> idle_time: 10437; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1f31652 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:09,428, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1f31652
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@430b6 ---> idle_time: 11828; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@430b6 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a ---> idle_time: 12156; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:09,428, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1f31652
2008-03-19 08:06:09,428, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@430b6
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:09,428, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@430b6
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:09,428, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:09,428, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 2
2008-03-19 08:06:09,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 3
2008-03-19 08:06:09,444, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:09,444, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 2
2008-03-19 08:06:09,663, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:09,663, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 1
2008-03-19 08:06:09,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:09 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:09,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:09,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:09,850, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:09,850, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:11,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:11 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:11,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:11,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:12,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:12 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:12,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:12,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15b8520 ---> idle_time: 12484; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:12,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15b8520 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:12,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:12,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:12,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:12,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:12,225, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15b8520
2008-03-19 08:06:12,225, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15b8520
2008-03-19 08:06:12,241, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 3, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:12,241, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:14,413, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:14 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:14,413, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:14,413, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:14,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:14 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:14,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:14,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@18952cc ---> idle_time: 12000; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:14,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@18952cc [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:14,725, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@18952cc
2008-03-19 08:06:14,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:14,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:14,725, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@18952cc
2008-03-19 08:06:14,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:14,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:14,741, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 3, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:14,741, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:16,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:16 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:16,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:16,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:17,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:17 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:17,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:17,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:19,413, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:19 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:19,413, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:19,413, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:19,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:19 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:19,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:19,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:21 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7cdc58 ---> idle_time: 12063; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7cdc58 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:21,913, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7cdc58
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:21,913, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7cdc58
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7ee46a ---> idle_time: 12250; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7ee46a [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:21,913, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7ee46a
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:21,913, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7ee46a
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@47c130 ---> idle_time: 12469; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@47c130 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:21,913, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@47c130
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:21,913, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@47c130
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 2
2008-03-19 08:06:21,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 3
2008-03-19 08:06:21,928, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:21,928, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 2
2008-03-19 08:06:22,131, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:22,131, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 1
2008-03-19 08:06:22,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:22 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:22,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:22,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:24,413, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:24 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:24,413, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:24,413, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:24,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:24 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:24,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:24,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@9ff588 ---> idle_time: 12484; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:24,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@9ff588 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:24,725, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@9ff588
2008-03-19 08:06:24,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:24,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:24,725, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@9ff588
2008-03-19 08:06:24,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:24,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:24,741, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 3, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:24,741, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:24,928, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:24,928, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:26,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:26 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:26,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:26,913, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:27,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:27 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:27,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:27,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@b6e385 ---> idle_time: 12484; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:27,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@b6e385 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:27,225, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@b6e385
2008-03-19 08:06:27,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:27,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:27,225, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@b6e385
2008-03-19 08:06:27,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:27,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:27,241, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 3, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:27,241, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:29,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:29 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:29,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:29,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:29,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:29 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:29,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:29,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:31,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:31 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:31,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:31,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:32,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:32 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:32,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:32,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:34,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:34 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:34,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:34,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5b84b ---> idle_time: 12297; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:34,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5b84b [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:34,428, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5b84b
2008-03-19 08:06:34,428, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5b84b
2008-03-19 08:06:34,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:34,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:34,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1bd5f28 ---> idle_time: 12500; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:34,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1bd5f28 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:34,428, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1bd5f28
2008-03-19 08:06:34,428, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1bd5f28
2008-03-19 08:06:34,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:34,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:34,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:34,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:34,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 2
2008-03-19 08:06:34,444, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:34,444, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 1
2008-03-19 08:06:34,662, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:34,662, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:34,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:34 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:34,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:34,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:36,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:36 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:36,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:36,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@fdbc27 ---> idle_time: 12000; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:36,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@fdbc27 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:36,928, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@fdbc27
2008-03-19 08:06:36,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:36,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:36,928, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@fdbc27
2008-03-19 08:06:36,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:36,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:36,944, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:36,944, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:37,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:37 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:37,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:37,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@223d9b ---> idle_time: 12484; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:37,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@223d9b [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:37,225, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@223d9b
2008-03-19 08:06:37,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:37,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:37,225, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@223d9b
2008-03-19 08:06:37,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:37,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:37,241, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 3, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:37,241, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:39,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:39 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:39,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:39,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:39,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:39 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:39,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:39,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@135707c ---> idle_time: 12484; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:39,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@135707c [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:39,725, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@135707c
2008-03-19 08:06:39,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:39,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:39,725, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@135707c
2008-03-19 08:06:39,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:39,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:39,740, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 3, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:39,740, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:41,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:41 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:41,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:41,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:42,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:42 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:42,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:42,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:44,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:44 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:44,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:44,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:44,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:44 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:44,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:44,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:46,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:46 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:46,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:46,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1e4f66a ---> idle_time: 12266; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:46,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1e4f66a [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:46,928, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1e4f66a
2008-03-19 08:06:46,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:46,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:46,928, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1e4f66a
2008-03-19 08:06:46,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@10948bd ---> idle_time: 12484; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:46,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@10948bd [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:46,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:46,928, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@10948bd
2008-03-19 08:06:46,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:46,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:46,928, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@10948bd
2008-03-19 08:06:46,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:46,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 2
2008-03-19 08:06:46,944, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:46,944, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 1
2008-03-19 08:06:46,959, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:46,959, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:47,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:47 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:47,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:47,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:49,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:49 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:49,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:49,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@21e605 ---> idle_time: 12484; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:49,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@21e605 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:49,428, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@21e605
2008-03-19 08:06:49,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:49,428, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@21e605
2008-03-19 08:06:49,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:49,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:49,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:49,443, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@112e7f7 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@19cd75a)
2008-03-19 08:06:49,443, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:49,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:49 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:49,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:49,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@b10190 ---> idle_time: 12484; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:49,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@b10190 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:49,725, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@b10190
2008-03-19 08:06:49,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:49,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:49,725, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@b10190
2008-03-19 08:06:49,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:49,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:49,725, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 3, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:49,725, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:51,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:51 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:51,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:51,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:52,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:52 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:52,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:52,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15b25a1 ---> idle_time: 12485; max_idle_time: 10000 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:52,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15b25a1 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:52,225, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15b25a1
2008-03-19 08:06:52,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:52,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:52,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:52,225, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15b25a1
2008-03-19 08:06:52,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - incremented pending_acquires: 1
2008-03-19 08:06:52,225, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@1283052 [managed: 3, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@883357)
2008-03-19 08:06:52,225, [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - decremented pending_acquires: 0
2008-03-19 08:06:54,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:54 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:54,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:54,428, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:54,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:54 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:54,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:54,725, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@1283052]
2008-03-19 08:06:56,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Wed Mar 19 08:06:56 GMT 2008 [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:56,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:56,928, [Timer-0] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@112e7f7]
2008-03-19 08:06:57,225, [Timer-1] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 14, 2008 5:25 am 
Newbie

Joined: Tue Sep 26, 2006 9:14 am
Posts: 5
the problem seems to be resolved after upgrading hibernate to 3.2.6


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.