Statement cancelled due to timeout or client request 异常的修复【已解决】
Statement cancelled due to timeout or client request报错详情报错分析及解决问题重现及解决方案报错详情Caused by: com.mysql.jdbc.exceptions.MySQLTimeoutException: Statement cancelled due to timeout or client requestat com.mysql
·
报错详情
Caused by: com.mysql.jdbc.exceptions.MySQLTimeoutException: Statement cancelled due to timeout or client request
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2303)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2696)
at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2105)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2398)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2316)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2301)
at org.jboss.resource.adapter.jdbc.CachedPreparedStatement.executeUpdate(CachedPreparedStatement.java:95)
at org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeUpdate(WrappedPreparedStatement.java:251)
报错分析及解决
在连接数据量比较大的表的时候,可能会报Statement cancelled due to timeout or client request 异常,在JDBC连接参数里加上queryTimeout=2400即可解决。
&queryTimeout=2400
问题重现及解决方案
上述方案治标不治本,所以Statement cancelled due to timeout or client request 卷土重来了
再加入上述参数过后,在数据量达到30w的时候selectByExample 又报这个错误,再经过分析,可能是:sql执行慢导致的阻塞,进而导致其他sql无法执行。
解决方案:
- 配置jdbc超时时间,适当增大
- 加索引,优化SQL,给关联字段增加索引
- 子查询尽量缩小搜索范围,减少join的次数
- 能用join就不要in了
- 限制索引的数目
- 不要查询*(所有),避免大字段,查询需要信息即可
更多推荐
已为社区贡献1条内容
所有评论(0)