环境简述:Python 3.11,MySQL,SQLAlchemy,驱动使用 asyncmy
项目中 SQLAlchemy 使用了 asyncio 异步做数据库读写
在尝试查询的时候,程序报了个错
sqlalchemy.exc.InternalError: (asyncmy.errors.InternalError) Packet sequence number wrong - got 24 expected 1(Background on this error at: https://sqlalche.me/e/20/2j85)
查看了报错信息里面的链接
InternalError
Exception raised when the database encounters an internal error, e.g. the cursor is not valid anymore, the transaction is out of sync, etc.This error is a DBAPI Error and originates from the database driver (DBAPI), not SQLAlchemy itself.
The InternalError is sometimes raised by drivers in the context of the database connection being dropped, or not being able to connect to the database. For tips on how to deal with this, see the section Dealing with Disconnects.
大体意思就是 SQLAlchemy 在甩锅:说这个不是他的问题,这个是底层的驱动的问题。感觉不太妙,
2.1 异步问题?
找到的第一篇文章:
python pymysql 多线程 读写数据库 报错 Packet sequence number wrong_whatday的博客-CSDN博客
以上是说是多线程造成的。但是我在项目里面使用了 asyncio 做异步,并没有使用多线程。经过多次排查,我把查询的代码拿出来单独执行,也执行不了,所以能确定不是多线程的问题。
2.2 编码问题?
找到的第二篇文章:
python - pymysql.err.InternalError: Packet sequence number wrong - got 45 expected 0 - Stack Overflow
以上是说 MySQL 的 utf8 编码的问题。我在 MySQL 里使用了 utf8mb4 编码。于是我在驱动的 url 连接里面加入了charset参数:
mysql+asyncmy://用户名:%s@数据库路径?charset=utf8mb4
报错依旧。
几近绝望之下,冥思苦想,我想既然编码可以造成这个错误,那么会不会是数据库中的数据本身造成了这个问题?
于是我清理了数据库中带中文的数据,发现可以正常查询了。于是我能确定,肯定是数据造成的问题而非异步或者是编码的问题。
我记得在某条数据写入的时候,有一个Warning,意思是将字符串类型的数据写入了 DateTime 类型的字段。数据虽然成功写入,但数据库中显示的 DateTime 是 0000-00-00 00:00:00
。
于是我将这条数据的这个字段删除,查询成功。
最后的解决方式是把数据库对应的字段改成 varchar
,当然也可以在写入之前检查类型,然后用时间日期格式写入。二选一即可。
至此,问题解决。SQLAlchemy 关于这个错误的报错信息不太合理,所以排查花了一点时间。网上能够查到的信息有限,所以写下这篇文章,希望能够帮到有同样问题的伙伴。
来源地址:https://blog.csdn.net/hansenzz/article/details/129319090