Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Correct way to keep pooled connections alive (or time them out and get fresh ones) during longer inactivity for MySQL, Grails 2 app

I have a grails app that has flurries of high activity, but then often periods of inactivity that can last several hours to over night. I notice that the first users in the morning get the following type of exception, and I believe this is due to the connections in the pool going stale and MYSql database closing them.

I've found conflicting information in Googling about whether using Connector/J connection property 'autoReconnect=true' is a good idea (and whether or not the client will still get an exception even if the connection is then restored), or whether to set other properties that will periodically evict or refresh idle connections, test on borrow, etc. Grails uses DBCP underneath. I currently have a simple config as below, and am looking for an answer on how to best ensure that any connection grabbed out of the pool after a long inactive period is valid and not closed.

dataSource {         pooled = true         dbCreate = "update"         url = "jdbc:mysql://my.ip.address:3306/databasename"         driverClassName = "com.mysql.jdbc.Driver"         dialect = org.hibernate.dialect.MySQL5InnoDBDialect         username = "****"         password = "****"         properties {           //what should I add here?           }     } 

Exception

    2012-06-20 08:40:55,150 [http-bio-8443-exec-1] ERROR transaction.JDBCTransaction  - JDBC begin failed com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: The last packet successfully received from the server was 64,129,968 milliseconds ago.  The last packet sent successfully to the server was 64,129,968 milliseconds ago. is longer than the server configured value of 'wait_timeout'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property 'autoReconnect=true' to avoid this problem.     at com.mysql.jdbc.Util.handleNewInstance(Util.java:411)     at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1116)     at com.mysql.jdbc.MysqlIO.send(MysqlIO.java:3851)     ...... Lots more ....... Caused by: java.sql.SQLException: Already closed.     at org.apache.commons.dbcp.PoolableConnection.close(PoolableConnection.java:114) 
like image 612
Peter Avatar asked Jun 20 '12 18:06

Peter


2 Answers

The easiest is to configure the connection pool to specify the query to be run to test the connection before it is passed to the application:

validationQuery="select 1 as dbcp_connection_test" testOnBorrow=true 

This same "connection validation" query can be run on other events. I'm not sure of the defaults for these:

testOnReturn=true testWhileIdle=true 

There are also configuration settings that limit the "age" of idle connections in the pool, which can be useful if idle connections are being closed at the server end.

minEvictableIdleTimeMillis timeBetweenEvictionRunsMillis 

http://commons.apache.org/dbcp/configuration.html

like image 75
spencer7593 Avatar answered Sep 30 '22 12:09

spencer7593


I don't know if it is the best way to handle database connection, but I had the same problems as you described. I tried a lot and ended up with the c3p0 connection pool.

Using c3p0 you could force your app to refresh the database connection after a certain time.

Place the c3p0.jar into your lib folder and add your configuration to conf/spring/resources.groovy.

My resources.groovy looks like this:

import com.mchange.v2.c3p0.ComboPooledDataSource import org.codehaus.groovy.grails.commons.ConfigurationHolder as CH  beans = {     /**     * c3P0 pooled data source that forces renewal of DB connections of certain age     * to prevent stale/closed DB connections and evicts excess idle connections     * Still using the JDBC configuration settings from DataSource.groovy     * to have easy environment specific setup available     */     dataSource(ComboPooledDataSource) { bean ->         bean.destroyMethod = 'close'         //use grails' datasource configuration for connection user, password, driver and JDBC url         user = CH.config.dataSource.username         password = CH.config.dataSource.password         driverClass = CH.config.dataSource.driverClassName         jdbcUrl = CH.config.dataSource.url         //force connections to renew after 4 hours         maxConnectionAge = 4 * 60 * 60         //get rid too many of idle connections after 30 minutes         maxIdleTimeExcessConnections = 30 * 60     }  }   
like image 22
aiolos Avatar answered Sep 30 '22 11:09

aiolos