最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - Mysql server has gone away and connection won't close - Stack Overflow

programmeradmin3浏览0评论

I'm working with Python, MySQL, and SQLAlchemy.

I'm trying to debug company code that essentially pulls from an input database, references against a log database, and pushes to a Jira custom field. The input database is queried and a secondary table is created. From there, logic (updating, adding, disabling, enabled in order) is performed on the secondary table. The secondary table, log database, and Jira are all added and updated accordingly, but when it comes time to move on to disabling, I get the MySQL error 2006: mysql (input database) server has gone away, and disabling and enabling logic isn't completed. From how I understand it, the input database is queried and left sitting with an open connection.

  • I've tried creating a heartbeat that pings the input database every 5 minutes. This successfully prevented the error from happening, but the heartbeat continued even after the program had finished. This leads me to believe that the connection was still open even then.
  • I've tried forcing a close with session.close() immediately after the input database is queried and at the end of the program, but I found that it reopened later in the code even though that input database wasn't called again.
  • I've tried limiting parameters like pool_timeout, and seems like it had no effect.
  • All SQL settings (wait_timeouts, interactive_timeout, etc) are default. The whole program takes less than 30 minutes to run, so the default 8 hours is definitely more than enough.
  • I've found a work around that restarts the connection after the error throws. This results in the connection restarting, going back through adding and updating (0 rows), and focusing on disabling and enabling. But I would definitely prefer for no error to throw at all.

I'm working with Python, MySQL, and SQLAlchemy.

I'm trying to debug company code that essentially pulls from an input database, references against a log database, and pushes to a Jira custom field. The input database is queried and a secondary table is created. From there, logic (updating, adding, disabling, enabled in order) is performed on the secondary table. The secondary table, log database, and Jira are all added and updated accordingly, but when it comes time to move on to disabling, I get the MySQL error 2006: mysql (input database) server has gone away, and disabling and enabling logic isn't completed. From how I understand it, the input database is queried and left sitting with an open connection.

  • I've tried creating a heartbeat that pings the input database every 5 minutes. This successfully prevented the error from happening, but the heartbeat continued even after the program had finished. This leads me to believe that the connection was still open even then.
  • I've tried forcing a close with session.close() immediately after the input database is queried and at the end of the program, but I found that it reopened later in the code even though that input database wasn't called again.
  • I've tried limiting parameters like pool_timeout, and seems like it had no effect.
  • All SQL settings (wait_timeouts, interactive_timeout, etc) are default. The whole program takes less than 30 minutes to run, so the default 8 hours is definitely more than enough.
  • I've found a work around that restarts the connection after the error throws. This results in the connection restarting, going back through adding and updating (0 rows), and focusing on disabling and enabling. But I would definitely prefer for no error to throw at all.
Share Improve this question asked Apr 1 at 21:38 beepbeepboopbeepbeepboop 92 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 0

Try pool_recycle=1800, pool_pre_ping=True in the function create_engine

Didn't find an answer to this, but worked around it by making a pymysql session instead that I was able to close when needed.

发布评论

评论列表(0)

  1. 暂无评论