转载--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.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值