mysql SQL执行超时问题

发布时间:2023年12月21日

show variables like ?'max_execution_time' ?

使用这个命令查看了,没有设置sql执行超时时间,那么大概率问题就出在阿里的Druid数据库连接池出了问题

尝试着socketTimeout由60000毫秒改成10000毫秒,果然执行了十几秒就超时报错了

socketTimeout: 120000  最后我把这个值调整到120秒才查询出来结果

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

Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure

The last packet successfully received from the server was 10,052 milliseconds ago. The last packet sent successfully to the server was 16,185 milliseconds ago.

文章来源:https://blog.csdn.net/zhb2010zhb/article/details/135141911
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。