美文网首页
MySQL server has gone away

MySQL server has gone away

作者: 雨哥 | 来源:发表于2019-05-21 22:32 被阅读0次

    应用程序(比如PHP)长时间的执行批量的MYSQL语句。执行一个SQL,但SQL语句过大或者语句中含有BLOB或者longblob字段。比如,图片数据的处理。都容易引起MySQL server has gone away。

    今天遇到类似的情景,MySQL只是冷冷的说:MySQL server has gone away。

    大概浏览了一下,主要可能是因为以下几种原因:
    最有可能是前任程序员数据表设计不合理,超级大的单表导致导入失败。实际上这种可能占了99.99%
    一种可能是发送的SQL语句太长,以致超过了max_allowed_packet的大小,如果是这种原因,你只要修改my.cnf,加大max_allowed_packet的值即可。

    还有一种可能是因为某些原因导致超时,比如说程序中获取数据库连接时采用了Singleton的做法,虽然多次连接数据库,但其实使用的都是同一个连接,而且程序中某两次操作数据库的间隔时间超过了wait_timeout(SHOW STATUS能看到此设置),那么就可能出现问题。最简单的处理方式就是把wait_timeout改大,当然你也可以在程序里时不时顺手mysql_ping()一下,这样MySQL就知道它不是一个人在战斗。
    以下错误也同样处理

    ERROR 1231 (42000): Variable 'time_zone' can't be set to the value of 'NULL'
    ERROR 1231 (42000): Variable 'sql_mode' can't be set to the value of 'NULL'
    ERROR 1231 (42000): Variable 'foreign_key_checks' can't be set to the value of 'NULL'
    ERROR 1231 (42000): Variable 'unique_checks' can't be set to the value of 'NULL'
    ERROR 1231 (42000): Variable 'character_set_client' can't be set to the value of 'NULL'
    Query OK, 0 rows affected (0.00 sec)
    ERROR 1231 (42000): Variable 'collation_connection' can't be set to the value of 'NULL'
    ERROR 1231 (42000): Variable 'sql_notes' can't be set to the value of 'NULL'
    

    mysql sql语句,设置max_allowed_packet = 1356M

    set global max_allowed_packet=1368435456
    

    相关文章

      网友评论

          本文标题:MySQL server has gone away

          本文链接:https://www.haomeiwen.com/subject/eftezqtx.html