Open importcjj opened 9 months ago
Thanks for opening this bug report. I think I would accept a PR that just changes the built-in ping function to your first variant. That should hopefully workaround that issue. Otherwise I would be interested in having a minimal reproducible example for this, as otherwise this is impossible to debug for anyone.
For now you can also workaround that issue by providing your custom connection check function via this config.
Thanks for opening this bug report. I think I would accept a PR that just changes the built-in ping function to your first variant. That should hopefully workaround that issue. Otherwise I would be interested in having a minimal reproducible example for this, as otherwise this is impossible to debug for anyone.
For now you can also workaround that issue by providing your custom connection check function via this config.
Changing the built-in ping function to my first variant is not easy, since it requires the backend to support the integer type i32
. The workaround way is to change the ping implementation in every certain backend.
We can assume support for i32
for all database systems, as it is a really fundamental type. It just need to be encoded in the trait bounds for this impl.
Setup
Versions
Feature Flags
Problem Description
After running for a few days, some connections in the connection pool will return an error
What are you trying to accomplish?
Query records in the database
What is the expected output?
No error
What is the actual output?
Got an error: "Unexpected end of row"
Are you seeing any additional errors?
Input/output error: can't parse: buf doesn't have enough data
Steps to reproduce
It's hard to reproduce the problem, after running for a few days, some connections in the pool will return errors. I think those connections are already corrupt but still can pass the health check of the connection pool. So I did a contrast experiment, when I found the connection got corrupt, the
ping2
responded with ok, but theping
responded with an error "buf doesn't have enough data"Checklist