forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 3
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
backport logical backups #536
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
4851511
backport logical backups
rvrangel 4442173
update flags
rvrangel c06b527
fix releasing the global read lock when mysqlshell backup fails (#17000)
rvrangel 0edb426
fix fakemysqldaemon new location
rvrangel 9b83c1e
do not use slices with 1.20
rvrangel 13ba09d
Merge branch 'slack-15.0' into logical-backups-backport2
rvrangel 5e94159
adding ShouldStartMySQLAfterRestore
rvrangel 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
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
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
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
Copyright 2022 The Vitess Authors. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
/* | ||
MeteredWriteCloser and MeteredWriter are respectively, time-and-byte-tracking | ||
wrappers around WriteCloser and Writer. | ||
*/ | ||
|
||
package ioutil | ||
|
||
import ( | ||
"bytes" | ||
) | ||
|
||
// BytesBufferWriter implements io.WriteCloser using an in-memory buffer. | ||
type BytesBufferWriter struct { | ||
*bytes.Buffer | ||
} | ||
|
||
func (m BytesBufferWriter) Close() error { | ||
return nil | ||
} | ||
|
||
func NewBytesBufferWriter() BytesBufferWriter { | ||
return BytesBufferWriter{bytes.NewBuffer(nil)} | ||
} |
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
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* | ||
Copyright 2022 The Vitess Authors. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package mysqlctl | ||
|
||
import ( | ||
"context" | ||
"time" | ||
|
||
"vitess.io/vitess/go/vt/mysqlctl/backupstorage" | ||
) | ||
|
||
type FakeBackupEngine struct { | ||
ExecuteBackupCalls []FakeBackupEngineExecuteBackupCall | ||
ExecuteBackupDuration time.Duration | ||
ExecuteBackupReturn FakeBackupEngineExecuteBackupReturn | ||
ExecuteRestoreCalls []FakeBackupEngineExecuteRestoreCall | ||
ExecuteRestoreDuration time.Duration | ||
ExecuteRestoreReturn FakeBackupEngineExecuteRestoreReturn | ||
ShouldDrainForBackupCalls int | ||
ShouldDrainForBackupReturn bool | ||
} | ||
|
||
type FakeBackupEngineExecuteBackupCall struct { | ||
BackupParams BackupParams | ||
BackupHandle backupstorage.BackupHandle | ||
} | ||
|
||
type FakeBackupEngineExecuteBackupReturn struct { | ||
Ok bool | ||
Err error | ||
} | ||
|
||
type FakeBackupEngineExecuteRestoreCall struct { | ||
BackupHandle backupstorage.BackupHandle | ||
RestoreParams RestoreParams | ||
} | ||
|
||
type FakeBackupEngineExecuteRestoreReturn struct { | ||
Manifest *BackupManifest | ||
Err error | ||
} | ||
|
||
func (be *FakeBackupEngine) ExecuteBackup( | ||
ctx context.Context, | ||
params BackupParams, | ||
bh backupstorage.BackupHandle, | ||
) (bool, error) { | ||
be.ExecuteBackupCalls = append(be.ExecuteBackupCalls, FakeBackupEngineExecuteBackupCall{params, bh}) | ||
|
||
if be.ExecuteBackupDuration > 0 { | ||
time.Sleep(be.ExecuteBackupDuration) | ||
} | ||
|
||
return be.ExecuteBackupReturn.Ok, be.ExecuteBackupReturn.Err | ||
} | ||
|
||
func (be *FakeBackupEngine) ExecuteRestore( | ||
ctx context.Context, params RestoreParams, | ||
bh backupstorage.BackupHandle, | ||
) (*BackupManifest, error) { | ||
be.ExecuteRestoreCalls = append(be.ExecuteRestoreCalls, FakeBackupEngineExecuteRestoreCall{bh, params}) | ||
|
||
// mark restore as in progress | ||
if err := createStateFile(params.Cnf); err != nil { | ||
return nil, err | ||
} | ||
|
||
if be.ExecuteRestoreDuration > 0 { | ||
time.Sleep(be.ExecuteRestoreDuration) | ||
} | ||
|
||
return be.ExecuteRestoreReturn.Manifest, be.ExecuteRestoreReturn.Err | ||
} | ||
|
||
func (be *FakeBackupEngine) ShouldDrainForBackup() bool { | ||
be.ShouldDrainForBackupCalls = be.ShouldDrainForBackupCalls + 1 | ||
return be.ShouldDrainForBackupReturn | ||
} |
Oops, something went wrong.
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.
looks like
ShouldStartMySQLAfterRestore
is not checked online 350-352? or it's no longer needed? the original change https://github.com/vitessio/vitess/pull/16295/files#diff-b99512e7a77c7bd6ad4dcdd037ebc57754be363e0148c67bb22886cd4fbc1d80R450There 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.
that's a good catch, thanks Tanjin. I think this got removed because we don't exactly need it on our setup because of the hooks, but there is no reason it shouldn't be backported too. I have added it there