I'm using DBCP data source (with default configuration) in Spring configuration to manage my connections to the database, and I'm running into a deadlock condition when the number of clients increase.

I found that there is a deadlock issue in DBCP 1.2.1 which I was using, which was supposed to be resolved in 1.4. So I upgraded to 1.4, but the issue still persists.

In the thread dump, there are many threads blocked with the following stack trace on top:

   java.lang.Thread.State: WAITING on org.apache.commons.pool.impl.GenericObjectPool$Latch@b6b09e
at java.lang.Object.wait(Native Method)
at java.lang.Object.wait(Object.java:485)
at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1104)
at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106)
at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044)
at org.springframework.jdbc.datasource.DataSourceTransactionManager.doBegin(DataSourceTransactionManager.java:200)
at org.springframework.transaction.support.AbstractPlatformTransactionManager.getTransaction(AbstractPlatformTransactionManager.java:350)
at org.springframework.transaction.interceptor.TransactionAspectSupport.createTransactionIfNecessary(TransactionAspectSupport.java:261)
at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:101)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:160)
at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
at org.springframework.aop.framework.Cglib2AopProxy$DynamicAdvisedInterceptor.intercept(Cglib2AopProxy.java:631)

Any suggestions are welcome!

link|improve this question

78% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I switched to c3p0, few years back. You can try that. I believe you didn't have to change much, it's just a game of configuration.

Somewhat related thread, Connection pooling options with JDBC: DBCP vs C3P0. Well, actually I made it related.

link|improve this answer
In the case of switching connection pools, how about jdbc-pool? DBCP shows better performance in benchmarks compared to c3p0, and jdbc-pool is faster than both. Any experience with that? – Iravanchi Apr 19 '11 at 11:02
No, I never used jdbc-pool. Hence, can't say anything about that. But after reading about that it sounds promising. As far as performance is concerned, this thread, people.apache.org/~fhanik/jdbc-pool/jdbc-pool.html, suggests that DBCP is poor in performance. – Adeel Ansari Apr 20 '11 at 3:27
DBCP is poor compared to jdbc-pool, but this benchmark shows c3p0 is slower than both (but probably more robust that DBCP as you said): tomcatexpert.com/blog/2010/03/22/… – Iravanchi Apr 20 '11 at 6:45
Thanks for the benchmark, Iravanchi. – Adeel Ansari Apr 20 '11 at 7:50
feedback

Did you make sure the commons-pool version matches the dbcp version?

Also, I'm not seeing a deadlock in the stacktrace, it simply looks like you have threads waiting for connections to free up.. How many threads do you have trying to connect at the same time? How many connections have you configured for the pool etc..?

In debugging this kind of cases it's also useful to look at what the threads that have gotten a connection are doing.

link|improve this answer
Both are latest versions, DBCP 1.4, POOL 1.5.5. There's also a bug in POOL 1.5.2 that shows exactly the same trace as mine does, and it should be fixed by 1.5.3. And I'm using 1.5.5. I haven't configured the pool options, so its using defaults. Number of threads are normally 30 to 50 in normal condition, but when the application deadlocks, Tomcat creates a thread for each request and all of them get blocked, so it reaches 150 or 200 threads. – Iravanchi Apr 19 '11 at 11:04
And ALL of the threads are waiting for a connection after the deadlock condition. There's no other threads actively doing anything. All of them eventually come to the point that they need a connection, and they get in a queue that never moves forward. – Iravanchi Apr 19 '11 at 11:06
Ok so are you sure you're actually returning the connections to the pool too? – Mikko Wilkman Apr 19 '11 at 11:35
Absolutely. I'm using Spring aspects in a simple configuration (you can see the effect in the stack trace). And this is not an issue in a low-concurrency setting (with 10 or 20 users). I have even written a debugging filter to count open/close in each thread and check if there is any leak. – Iravanchi Apr 19 '11 at 11:46
Strange, that blocking is really happening when the pool is exhausted and I wouldn't call it a deadlock in that situation.. How is the connection closing with spring aspects handled? – Mikko Wilkman Apr 19 '11 at 13:53
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.