Add some support for running gh-ost in MINIMAL RBR setups#843
Open
ajm188 wants to merge 2 commits intogithub:masterfrom
Open
Add some support for running gh-ost in MINIMAL RBR setups#843ajm188 wants to merge 2 commits intogithub:masterfrom
MINIMAL RBR setups#843ajm188 wants to merge 2 commits intogithub:masterfrom
Conversation
added 2 commits
May 9, 2020 12:53
Partially addresses github#230. Add a new flag, `--switch-to-rbr-full`. If this flag is set, and `--assume-rbr` is **not** passed, gh-ost will first set binlog format to `ROW` if it is not already (this is existing behavior), but then _also_ sets the binlog row image to `FULL` if it is not already (this is the new behavior) before restarting replication. Mirroring the way gh-ost handles changing binary logging from SBR to RBR, gh-ost will _not_ reset the row image to `MINIMAL` under any circumstance.
MINIMAL RBR setups
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
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.
Related issue: #230
Description
Adds some support for running gh-ost in
MINIMALRBR setupsPartially addresses #230.
Changes:
Add a new flag,
--switch-to-full-rbr. If this flag is set, and--assume-rbris not passed, gh-ost will first set binlog format toROWif it is not already (this is existing behavior), but then also sets the binlog row image toFULLif it is not already (this is the new behavior) before restarting replication.Mirroring the way gh-ost handles changing binary logging from SBR to RBR, gh-ost will not reset the row image to
MINIMALunder any circumstance.script/cibuildreturns with no formatting errors, build errors or unit test errors.