Pinging a closed connection shouldn't be considered a failure #396
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When reconnecting, Active Record's
MySQL2Adapter
closes the old connection, but keep the old connection around:So if that reconnection attempts fail, we are left with a closed connection in
@raw_connection
.The problem is that if the circuit breaker was open, before closing again we move to
half-open
state, meaning we open again on the first failure.Since before reconnecting
Mysql2Adapter
does try to ping the existing connection, we end up reopening the CB immediately because we calledping
on a closed connection.Either way it makes no sense to report a failure in such case, as a closed connection is no indication of a resource having a problem.
@bmansoob @eileencodes @miry