The last packet successfully received from the server was 11,012 milliseconds ago.

最近在生产系统上报如下错误:

### Error updating database.  Cause: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure

The last packet successfully received from the server was 11,012 milliseconds ago.  The last packet sent successfully to the server was 11,012 milliseconds ago.

通过跟踪日志发现,每次发生这种情况的时候,正好赶上数据库定时备份。

通过慢查询日志,tomcat日志,入库日志可以初步判定是 备份时给表加的写锁期间,如果这个时候进来写请求,且数据还没备份

完,socketTimeout,connectTimeout又设置的比备份时间要短的话极有可能出现如上报错。

问题定位了,解决方法也就可以确定了:

1. socketTimeout,connectTimeout设置的比备份时间长一些。如果备份时间很长则需要第二种方法了。

2. 备份时不在主库上进行,而在备库上进行,不影响数据的写入。

 

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