-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Consolidate fetching of MySQL server info #1229
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
Open
Open
Conversation
This file contains hidden or 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
2 tasks
@timvaillancourt
timvaillancourt
marked this pull request as ready for review
December 12, 2022 22:26
@timvaillancourt
timvaillancourt
force-pushed
the
mysql-serverInfo
branch
from
December 13, 2022 00:15
bee9195 to
739744a
Compare
@timvaillancourt
timvaillancourt
force-pushed
the
mysql-serverInfo
branch
from
December 13, 2022 23:15
c7447c3 to
22d769e
Compare
@timvaillancourt
timvaillancourt
force-pushed
the
mysql-serverInfo
branch
from
January 15, 2024 01:45
a6ad288 to
83f0cc1
Compare
Signed-off-by: Tim Vaillancourt <tim@timvaillancourt.com>
@timvaillancourt
timvaillancourt
force-pushed
the
mysql-serverInfo
branch
from
January 15, 2024 01:47
1b158a4 to
06079a9
Compare
Closed
Contributor
meiji163
commented
Dec 19, 2024
HI @timvaillancourt 👋 do you still want to add this one to 1.1.7 or should we push it out? I'm planning to cut a release this week or next
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Uh oh!
There was an error while loading. Please reload this page.
Description
This PR consolidates the many queries and functions that fetch MySQL server runtime configuration into a single struct and function:
mysql.ServerInfoandmysql.GetServerInfo(...) (*ServerInfo, error)respectively. This reduces the server-info-related MySQL queries from6->2Now server information for both the applier and inspector are stored in the migration context as single structs
Notes:
@@global.portand@@global.extra_portareNULLagosql.NullInt64was used when cleaning upbase.ValidateConnection(...)Portfrommysql.InstanceKeyto becomeint64as there is nogosql.NullIntbase.ValidateConnection(...)on the applier'sthis.singletonDBdatabase handle as it is the same host as the already-validatedthis.dbhandleApplier initiated on %+v, version %+vlog-lines now include the@@global.version_comment(in brackets) for more infobase.ValidateConnection(...)now that it takes inserverInfo *mysql.ServerInfovs a harder-to-testdb *sql.DBmigrationContext.RequiresBinlogFormatChange(...)to inspector because it's never called outside of inspector.validateAndReadTimeZone()func from applierscript/cibuildreturns with no formatting errors, build errors or unit test errors.