Mysql报错!Communications link failure due to underlying exception

最近的一个项目在使用C3P0的连接池,数据库MySQL。开发测试没有问题,之前运行也没有问题,因为取消了一个5分钟执行一次的sql,隔天执行某个sql的时候报错了,但是第二个sql又好使。(突然想起来,前几天面试还有面试官问过我这个问题,当时没答上。)

com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure

百度了原因

Mysql服务器默认的“wait_timeout”是8小时,也就是说一个connection空闲超过8个小时,Mysql将自动断开该connection。这就是问题的所在,在C3P0 pools中的connections如果空闲超过8小时,Mysql将其断开,而C3P0并不知道该connection已经失效,如果这时有Client请求connection,C3P0将该失效的Connection提供给Client,将会造成上面的异常。

解决的方法有3种:

  1. 增加wait_timeout的时间。
  2. 减少Connection pools中connection的lifetime。
  3. 测试Connection pools中connection的有效性。

当然最好的办法是同时综合使用上述3种方法,假设wait_timeout为默认的8小时


C3P0增加以下配置信息:

  1. //获取connnection时测试是否有效
  2. testConnectionOnCheckin = true
  3. //自动测试的table名称
  4. automaticTestTable=C3P0TestTable
  5.  //set to something much less than wait_timeout, prevents connections from going stale
  6. idleConnectionTestPeriod = 18000
  7. //set to something slightly less than wait_timeout, preventing 'stale' connections from being handed out
  8. maxIdleTime = 25000
  9. //if you can take the performance 'hit', set to "true"
  10. testConnectionOnCheckout = true

更多的配置信息大家可以查看C3P0文档,Connector/J文档,以及DBCP的文档。

你可能感兴趣的:(错误,数据库)