forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix releasing the global read lock when mysqlshell backup fails (vite…
…ssio#17000) Signed-off-by: Renan Rangel <rrangel@slack-corp.com> Signed-off-by: 'Renan Rangel' <rrangel@slack-corp.com>
- Loading branch information
Showing
6 changed files
with
443 additions
and
6 deletions.
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 |
---|---|---|
@@ -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
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 | ||
} |
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,160 @@ | ||
/* | ||
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" | ||
"fmt" | ||
"io" | ||
|
||
"vitess.io/vitess/go/vt/concurrency" | ||
"vitess.io/vitess/go/vt/mysqlctl/backupstorage" | ||
) | ||
|
||
type FakeBackupHandle struct { | ||
Dir string | ||
NameV string | ||
ReadOnly bool | ||
Errors concurrency.AllErrorRecorder | ||
|
||
AbortBackupCalls []context.Context | ||
AbortBackupReturn error | ||
AddFileCalls []FakeBackupHandleAddFileCall | ||
AddFileReturn FakeBackupHandleAddFileReturn | ||
EndBackupCalls []context.Context | ||
EndBackupReturn error | ||
ReadFileCalls []FakeBackupHandleReadFileCall | ||
ReadFileReturnF func(ctx context.Context, filename string) (io.ReadCloser, error) | ||
} | ||
|
||
type FakeBackupHandleAddFileCall struct { | ||
Ctx context.Context | ||
Filename string | ||
Filesize int64 | ||
} | ||
|
||
type FakeBackupHandleAddFileReturn struct { | ||
WriteCloser io.WriteCloser | ||
Err error | ||
} | ||
|
||
type FakeBackupHandleReadFileCall struct { | ||
Ctx context.Context | ||
Filename string | ||
} | ||
|
||
func (fbh *FakeBackupHandle) RecordError(err error) { | ||
fbh.Errors.RecordError(err) | ||
} | ||
|
||
func (fbh *FakeBackupHandle) HasErrors() bool { | ||
return fbh.Errors.HasErrors() | ||
} | ||
|
||
func (fbh *FakeBackupHandle) Error() error { | ||
return fbh.Errors.Error() | ||
} | ||
|
||
func (fbh *FakeBackupHandle) Directory() string { | ||
return fbh.Dir | ||
} | ||
|
||
func (fbh *FakeBackupHandle) Name() string { | ||
return fbh.NameV | ||
} | ||
|
||
func (fbh *FakeBackupHandle) AddFile(ctx context.Context, filename string, filesize int64) (io.WriteCloser, error) { | ||
fbh.AddFileCalls = append(fbh.AddFileCalls, FakeBackupHandleAddFileCall{ctx, filename, filesize}) | ||
return fbh.AddFileReturn.WriteCloser, fbh.AddFileReturn.Err | ||
} | ||
|
||
func (fbh *FakeBackupHandle) EndBackup(ctx context.Context) error { | ||
fbh.EndBackupCalls = append(fbh.EndBackupCalls, ctx) | ||
return fbh.EndBackupReturn | ||
} | ||
|
||
func (fbh *FakeBackupHandle) AbortBackup(ctx context.Context) error { | ||
fbh.AbortBackupCalls = append(fbh.AbortBackupCalls, ctx) | ||
return fbh.AbortBackupReturn | ||
} | ||
|
||
func (fbh *FakeBackupHandle) ReadFile(ctx context.Context, filename string) (io.ReadCloser, error) { | ||
fbh.ReadFileCalls = append(fbh.ReadFileCalls, FakeBackupHandleReadFileCall{ctx, filename}) | ||
if fbh.ReadFileReturnF == nil { | ||
return nil, fmt.Errorf("FakeBackupHandle has not defined a ReadFileReturnF") | ||
} | ||
return fbh.ReadFileReturnF(ctx, filename) | ||
} | ||
|
||
type FakeBackupStorage struct { | ||
CloseCalls int | ||
CloseReturn error | ||
ListBackupsCalls []FakeBackupStorageListBackupsCall | ||
ListBackupsReturn FakeBackupStorageListBackupsReturn | ||
RemoveBackupCalls []FakeBackupStorageRemoveBackupCall | ||
RemoveBackupReturn error | ||
RemoveBackupReturne error | ||
StartBackupCalls []FakeBackupStorageStartBackupCall | ||
StartBackupReturn FakeBackupStorageStartBackupReturn | ||
} | ||
|
||
type FakeBackupStorageListBackupsCall struct { | ||
Ctx context.Context | ||
Dir string | ||
} | ||
|
||
type FakeBackupStorageListBackupsReturn struct { | ||
BackupHandles []backupstorage.BackupHandle | ||
Err error | ||
} | ||
|
||
type FakeBackupStorageRemoveBackupCall struct { | ||
Ctx context.Context | ||
Dir string | ||
Name string | ||
} | ||
|
||
type FakeBackupStorageStartBackupCall struct { | ||
Ctx context.Context | ||
Dir string | ||
Name string | ||
} | ||
|
||
type FakeBackupStorageStartBackupReturn struct { | ||
BackupHandle backupstorage.BackupHandle | ||
Err error | ||
} | ||
|
||
func (fbs *FakeBackupStorage) ListBackups(ctx context.Context, dir string) ([]backupstorage.BackupHandle, error) { | ||
fbs.ListBackupsCalls = append(fbs.ListBackupsCalls, FakeBackupStorageListBackupsCall{ctx, dir}) | ||
return fbs.ListBackupsReturn.BackupHandles, fbs.ListBackupsReturn.Err | ||
} | ||
|
||
func (fbs *FakeBackupStorage) StartBackup(ctx context.Context, dir, name string) (backupstorage.BackupHandle, error) { | ||
fbs.StartBackupCalls = append(fbs.StartBackupCalls, FakeBackupStorageStartBackupCall{ctx, dir, name}) | ||
return fbs.StartBackupReturn.BackupHandle, fbs.StartBackupReturn.Err | ||
} | ||
|
||
func (fbs *FakeBackupStorage) RemoveBackup(ctx context.Context, dir, name string) error { | ||
fbs.RemoveBackupCalls = append(fbs.RemoveBackupCalls, FakeBackupStorageRemoveBackupCall{ctx, dir, name}) | ||
return fbs.RemoveBackupReturn | ||
} | ||
|
||
func (fbs *FakeBackupStorage) Close() error { | ||
fbs.CloseCalls = fbs.CloseCalls + 1 | ||
return fbs.CloseReturn | ||
} |
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
Oops, something went wrong.