-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Incremental backup and point in time recovery for XtraBackup #13156
Merged
Merged
Changes from 11 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
6212772
incremental backup is always using 'builtin' engine
shlomi-noach bc9c029
restore: use 'builtin' for incremental restore
shlomi-noach db506ca
test all backup types
shlomi-noach 1ae6041
format code
shlomi-noach 1b79d88
Populate PurgedPosition
shlomi-noach b17db00
cleanup backups at the end of each test case
shlomi-noach 7f1a577
improved cleanup
shlomi-noach c40090f
rename variable
shlomi-noach a042eb6
record all backups
shlomi-noach 33cb6cd
no need to cleanup backups in between test cases, since each new case…
shlomi-noach 7b7bd41
install xtrabackup on backup_pitr tests
shlomi-noach a8e6817
use pgzip for xtrabackup
shlomi-noach a1af0fe
more debug info
shlomi-noach 6db1a8d
builtin engine: store gtid_purged in manifest
shlomi-noach b5641cf
use backupfrom-GTID as incremental-from-GTID if first binary log has …
shlomi-noach 57877e6
more unit tests
shlomi-noach 9b9016d
improve error message
shlomi-noach a2dc603
capturing MySQL's stderr and reading and logging if not empty
shlomi-noach fa66d2c
At the end of Xtrabackup restore, validate that @@gtid_purged (and th…
shlomi-noach 136126b
add comperssion details into test case. Fix GTID validation of manife…
shlomi-noach c28a9ab
check manifest
shlomi-noach f40db18
Refactor into function
shlomi-noach 741cfeb
check manifest.Position.GTIDSet
shlomi-noach 5fbe3d1
fix wrangler tests
shlomi-noach abf6672
typo
shlomi-noach 4f5fd46
Update go/vt/mysqlctl/backup.go
shlomi-noach 289645e
Update go/vt/mysqlctl/backup.go
shlomi-noach 027f33d
Update go/vt/mysqlctl/backup.go
shlomi-noach 2b02ab7
typo
shlomi-noach fe2aa08
Update go/vt/mysqlctl/mysqld.go
shlomi-noach 63890aa
Update go/vt/mysqlctl/mysqld.go
shlomi-noach a67e497
Update go/vt/mysqlctl/mysqld.go
shlomi-noach 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
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.
Most of the content here is the same, just indented, and executes for any one of the three backup types we support. Best reviewed with spaces ignored.