`
jackle_liu
  • 浏览: 145692 次
文章分类
社区版块
存档分类
最新评论

转载--grails的dbcp连接池链接失效问题的解决方案

阅读更多

Grails, DBCP & Stale Connections

July 13, 2009


Does your application break after every few hours of inactivity even though you have enough database connections in the pool? It is a common problem with database connection pooling (and idle sockets connections in general).

I have been running a few Grails app with PostgreSQL database using Apache Commons DBCP connection pooling. Most of these apps are pretty busy, and are working quite well so far. But I have one critical app that doesn’t get used as much. Recently after a bug report, I was watching through the logs and I realized that this app was complaining about Socket Connection Exception after every hour of idle time. Try it again, and it would work. So why was it rejecting the DB connection the first time? Creepy!

I checked out the other apps I have, and all of them were suffering from the same problem - depending on how idle they were. I couldn’t ignore any longer.

I started off with the basics.

Basic configuration:

I have my datasource defined in the DataSource.groovy file under grails-app/conf. I have enabled connection pooling and I am using the appropriate PostgreSQL-JDBC driver. Grails comes with Apache DBCP connection pooling by default. So it just works.

01. environments {
02. production {
03. dataSource {
04. pooled = true
05. driverClassName = "org.postgresql.Driver"
06. dbCreate = "update"
07. url = "jdbc:postgresql://sacharya.com:5432/sacharya_prod_db"
08. username = "myuser"
09. password = "mypassword"
10. logSql=true
11. }
12. }
13. }

This is what my production configuration looks like - running whatever the default behavior that Grails comes with. I printed the datasource object to see what DBCP configurations my app is using by default.

1. dataSource.properties. each { println it }
minIdle=0
initialSize=0
maxIdle=8
numIdle=0
maxActive=8
numActive=0

As the result shows, it is using the default values as defined in Apache DBCP

Problem:

Using netstat, I started watching if the application has any connections to the database open:

$ netstat -na | grep 5432
tcp4       0      0  24.25.26.27.50095     98.129.169.246.5432     ESTABLISHED

So DBCP says it has no connections open (active or idle) to the database yet in the pool. But netstat shows there is a TCP connection established to the database. Where does this connection come from - loading & initializing the Driver?

Now lets use the application for a while. Once you start asking the pool for connections, existing connections idle in the pool are at your service, or if there no connections in the pool, new connections are created and given to you, which get returned back to the pool after you complete the query. So at any given time, there will be minIdle to maxIdle ( 0 to 8 in our case) connections in the pool.

$ netstat -na | grep 5432
tcp4       0      0  24.25.26.27.51308     98.129.169.246.5432     ESTABLISHED
tcp4       0      0  24.25.26.27.50095     98.129.169.246.5432     ESTABLISHED

Now with some connections in the pool, I left the app idle for an hour and then I tried to access the app (netstat still shows 2 TCP connection). The first query got the following exception:

01. org.springframework.dao.DataAccessResourceFailureException: could not execute query;
02. nested exception is org.hibernate.exception.JDBCConnectionException: could not execute query
03.  
04. Caused by: org.hibernate.exception.JDBCConnectionException: could not execute query
05. at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java: 97 )
06.  
07. Caused by: org.postgresql.util.PSQLException: An I/O error occured while sending to the backend.
08. at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java: 217 )
09.  
10. Caused by: org.hibernate.exception.JDBCConnectionException: could not execute query
11. at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java: 97 )
12.  
13. Caused by: org.postgresql.util.PSQLException: An I/O error occured while sending to the backend.
14. at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java: 217 )
15.  
16. Caused by: java.net.SocketException: Broken pipe
17. at java.net.SocketOutputStream.socketWrite0(Native Method)

The subsequent query succeeds. There was one connection (ignore the other TCP connection used during Driver initialization) in the pool, but the database responded by saying that the connection was not valid.

Reasoning:

At this point it was clear that the TCP connection that was sitting idle was already broken, but our app still assumed it to be open. By idle connections, I mean connections in the pool that aren’t in active use at the moment by the application. After some search, I came to the conclusion that the network firewall between my app and the database is dropping the idle/stale connections after 1 hour. It seemed to be a common problem that many people have faced.

By default, DBCP holds the pooled connections open for infinite time. But a database connection is essentially a socket connection, and it doesn’t come for free. The host OS, database host, and firewall have to allocate a certain amount of memory and other resources for each socket connection. It makes sense to those devices not to hold onto idle connections for ever. So the idea is to make sure that you don’t have stale connections in your pool that would otherwise be silently dropped by OS or firewall. The system has no way of knowing if the connection is broken unless is sends a packet and waits for an acknowledgement. So even when the connection is timed out or closed by one side, the other side may still think the connection is open.

While there may not be a firewall between your server and database, even the OS has a timeout on TCP connections. You could probably increase the TCP keepalive of the OS itself, but that will affect the whole system, and yet you are only postponing the problem.

Solution:
Now lets try to modify some of the DBCP settings for the dataSource.

1. Validating Connections : DBCP allows you do define a validation query and do a sanity check of the connection before you actually use it in your application.
By default,

validationQuery=null
testOnBorrow=false
testOnReturn=false
testWhileIdle=false

The validation query must return at least one row, and using the query you can have DBCP test the connection for you while its idle, before you borrow and before you return it.
So lets change it to:

validationQuery="SELECT 1"
testOnBorrow=true
testOnReturn=true
testWhileIdle=true

If any of the connection object fails to validate, it will be dropped from the pool. There might be some performance implications of running these three SQLs (which I am not worried at the momet), and hence you might just want to try testOnBorrow.

2. Evicting Idle Connections : DBCP can run an idle object evictor at a regular interval and evict any connections that are older than some threshold. By default this behavior is turned off since timeBetweenEvictionRunsMillis is set to -1.

timeBetweenEvictionRunsMillis=-1
numTestsPerEvictionRun=3
minEvictableIdleTimeMillis=1000 * 60 * 30

Now lets run the evictor every 30 minutes and evict any connections older than 30 minutes.

timeBetweenEvictionRunsMillis=1000 * 60 * 30
numTestsPerEvictionRun=3
minEvictableIdleTimeMillis=1000 * 60 * 30

It turns out that you cannot change the DBCP settings from the DataSource.groovy file. The datasource object injected in the DataSource.groovy file is an instance of the javax.sql.DataSource. I can however do so by overriding the default DataSource from the BootStrap.groovy, which sets up the settings during start up.

01. import org.codehaus.groovy.grails.commons.ApplicationAttributes
02. class BootStrap {
03.  
04. def init = { servletContext ->
05.  
06. def ctx=servletContext.getAttribute(
07. ApplicationAttributes.APPLICATION_CONTEXT)
08. def dataSource = ctx.dataSource
09.  
10. dataSource.setMinEvictableIdleTimeMillis( 1000 * 60 * 30 )
11. dataSource.setTimeBetweenEvictionRunsMillis( 1000 * 60 * 30 )
12. dataSource.setNumTestsPerEvictionRun( 3 )
13.  
14. dataSource.setTestOnBorrow(true)
15. dataSource.setTestWhileIdle(false)
16. dataSource.setTestOnReturn(false)
17. dataSource.setValidationQuery( "SELECT 1" )
18.  
19. dataSource.properties. each { println it }
20. }
21. }

You can do the same from grails-app/conf/spring/Resource.groovy:

01. import org.apache.commons.dbcp.BasicDataSource
02. beans = {
03. dataSource(BasicDataSource) {
04. minEvictableIdleTimeMillis= 1800000
05. timeBetweenEvictionRunsMillis= 1800000
06. numTestsPerEvictionRun= 3
07.  
08. testOnBorrow=true
09. testWhileIdle=true
10. testOnReturn=true
11. validationQuery= "SELECT 1"
12. }
13. }

This seems to have solved the problem for me. Since my firewall was dropping the socket connections at 60 minutes, all I did was proactively run the idle object evictor every half 30 minutes, flush connections that are idle for more than 30 minutes and regenerate new connections in the pool. I also did sanity check over the connections in the pool.

分享到:
评论
1 楼 jackle_liu 2012-06-25  
转载---对于grails版本在1.3以上的解决方案
Grails turns database connection pooling on by default, and uses the Apache Commons DBCP library to do the pooling.

With many of the popular JDBC drivers, this can cause a failure when the application is accessed after a long idle time, commonly when a business application sits unused overnight, and then is accessed first-thing in the morning. The first user in the morning gets an HTTP 500 error, and then for subsequent users, everything is ok.

There are several ways to solve this, including changing to a different connection pool, but Sudarshan Acharya has a blog post from 2009 that explains a fairly easy way to configure DBCP to resolve this issue. Of course, there’s a “gotcha” here, or I wouldn’t be blogging about it:

As Tom Eastman points out, if you use Sudarshan’s example with Grails 1.3.x, you get an exception something like:

ERROR context.GrailsContextLoader – Error executing bootstraps: groovy.lang.MissingMethodException: No signature of method: org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy.setMinEvictableIdleTimeMillis() is applicable for argument types: (java.lang.Integer) values: [900000]
org.codehaus.groovy.runtime.InvokerInvocationException: groovy.lang.MissingMethodException: No signature of method: org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy.setMinEvictableIdleTimeMillis() is applicable for argument types: (java.lang.Integer) values: [900000]

As Graeme Rocher helpfully points out, this is because the properties of org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy changed with Grails 1.3.0, and you must now set the properties on ‘dataSourceUnproxied’ instead of setting them on ‘dataSource’. With this change, everything works as expected.

So, here’s an example of the new configuration of BootStrap.groovy, with Graeme’s suggested change:
view source
print?
01.def ctx = servletContext.getAttribute(
02.ApplicationAttributes.APPLICATION_CONTEXT
03.)
04.def dataSource = ctx.dataSourceUnproxied
05.
06.println "configuring database connection pool"
07.
08.dataSource.setMinEvictableIdleTimeMillis(1000 * 60 * 30)
09.dataSource.setTimeBetweenEvictionRunsMillis(1000 * 60 * 30)
10.dataSource.setNumTestsPerEvictionRun(3)
11.dataSource.setTestOnBorrow(true)
12.dataSource.setTestWhileIdle(false)
13.dataSource.setTestOnReturn(false)
14.dataSource.setValidationQuery("SELECT 1")
15.
16.dataSource.properties.each { println it }

相关推荐

Global site tag (gtag.js) - Google Analytics