-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vtcombo: close query service on drop database #16606
Merged
deepthi
merged 3 commits into
vitessio:main
from
Shopify:vtcombo-close-query-service-on-drop-database
Aug 27, 2024
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,13 +101,36 @@ func TestDropAndRecreateWithSameShards(t *testing.T) { | |
|
||
cur := conn.Session(ks1+"@primary", nil) | ||
|
||
mysqlConnCountBefore, err := getMySQLConnectionCount(ctx, cur) | ||
require.Nil(t, err) | ||
|
||
_, err = cur.Execute(ctx, "DROP DATABASE "+ks1, nil) | ||
require.Nil(t, err) | ||
|
||
_, err = cur.Execute(ctx, "CREATE DATABASE "+ks1, nil) | ||
require.Nil(t, err) | ||
|
||
assertTabletsPresent(t) | ||
|
||
mysqlConnCountAfter, err := getMySQLConnectionCount(ctx, cur) | ||
require.Nil(t, err) | ||
mattlord marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
// Assert that we're not leaking mysql connections, but allow for some wiggle room due to transient connections | ||
assert.InDelta(t, mysqlConnCountBefore, mysqlConnCountAfter, 5, | ||
"not within allowable delta: mysqlConnCountBefore=%d, mysqlConnCountAfter=%d", mysqlConnCountBefore, mysqlConnCountAfter) | ||
} | ||
|
||
func getMySQLConnectionCount(ctx context.Context, session *vtgateconn.VTGateSession) (int, error) { | ||
result, err := session.Execute(ctx, "SELECT COUNT(*) FROM information_schema.processlist", nil) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IMO this is a better query as the process list will show internal threads too (and it's deprecated 🙂):
|
||
if err != nil { | ||
return 0, err | ||
} | ||
row := result.Rows[0][0] | ||
toInt, err := row.ToInt() | ||
if err != nil { | ||
return 0, err | ||
} | ||
return toInt, nil | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit, but you can do all of this together:
|
||
} | ||
|
||
func assertTabletsPresent(t *testing.T) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 I'm assuming that this fails on main? I think that's what your comment was demonstrating but just triple checking.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it fails on main.