-
Notifications
You must be signed in to change notification settings - Fork 75
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
Support safe MySQL upgrades #483
Conversation
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.
Rest LGTM!
{ | ||
name: "equal version with same registry", | ||
current: "docker.io/vitess/mysql:8.0.23", | ||
desired: "docker.io/vitess/mysql:8.0.23", | ||
needsSafe: false, | ||
}, | ||
{ | ||
name: "equal version with different registry", | ||
current: "docker.io/vitess/mysql:8.0.23", | ||
desired: "docker.io/vitess/mysql:8.0.23", | ||
needsSafe: false, | ||
}, |
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.
They are the same cases
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.
Fixed via c30e759
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.
Nice work! I only found a couple of typos in comments. Please fix them and then merge.
Signed-off-by: Florent Poinsard <[email protected]>
Signed-off-by: Florent Poinsard <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]> Signed-off-by: Florent Poinsard <[email protected]>
Signed-off-by: Florent Poinsard <[email protected]>
Co-authored-by: Deepthi Sigireddi <[email protected]> Signed-off-by: Florent Poinsard <[email protected]>
Co-authored-by: Deepthi Sigireddi <[email protected]> Signed-off-by: Florent Poinsard <[email protected]>
4628963
to
af29fbf
Compare
This Pull Request adds code logic that will set the
global.innodb_fast_shutdown
MySQL variable to0
if there is a need for a safe MySQL upgrade.Part of vitessio/vitess#14160