Some users, myself included, have noticed that their MySQL error log contains many lines like this one:
2024-09-06T09:28:40.522161Z 17 [Note] [MY-010914] [Server] Got packets out of order
Where does that error come from?
The error MY-010914 is part of the Server Network issues like:
- Aborted connection XX to db: …
- Bad handshake
- Got an error reading communication packets
- Access denied for user…
- Got an error writing communication packets
Those are usually more problematic than the ones we are covering
today. The list is not exhaustive and in the source code it’s
linked to the code 08S01 (see
messages_to_clients.txt
).
We can also find these error messages directly in SQL using the
Performance_Schema.error_log
table:
select logged, error_code, …
[Read more]