Skip to content
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

adding new mysql shell backup engine #16295

Merged
merged 44 commits into from
Sep 24, 2024
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
1f70afb
adding new mysql shell backup engine
rvrangel Jun 27, 2024
58005ab
change flags
rvrangel Jul 2, 2024
b74a87f
fix TestHelpOutput
rvrangel Jul 10, 2024
c51ee4b
add unit test for scanLinesToLogger
rvrangel Jul 19, 2024
6e59215
PR feedback
rvrangel Jul 23, 2024
abe1d11
Merge branch 'master' into mysqlshell-backup
rvrangel Jul 23, 2024
3ca4b3b
PR feedback + fix tests
rvrangel Jul 25, 2024
d26b5c3
more improvements
rvrangel Aug 7, 2024
0a5fda4
fix unit test
rvrangel Aug 7, 2024
4aae34b
Merge branch 'master' into mysqlshell-backup
rvrangel Aug 13, 2024
7116317
fix tests
rvrangel Aug 13, 2024
c2d41ac
PR feedback
rvrangel Aug 21, 2024
8c6c665
regenerate ci workflows
rvrangel Aug 21, 2024
0bb5631
add mysql-shell package as part of the standard mysql CI dependencies
rvrangel Aug 21, 2024
82a288c
use dumpInstances() instead
rvrangel Aug 21, 2024
d9407f2
remove case XtraBackup, MySQLShell
rvrangel Aug 21, 2024
287a500
Merge branch 'master' into mysqlshell-backup
rvrangel Aug 21, 2024
31ba57e
make generate_ci_workflows
rvrangel Aug 21, 2024
31c27b5
update flags and operator.yaml
rvrangel Sep 4, 2024
e62ae95
removing DeleteBeforeRestore
rvrangel Sep 5, 2024
99f08ea
fixing tests
rvrangel Sep 9, 2024
589c81b
Merge branch 'master' into mysqlshell-backup
rvrangel Sep 9, 2024
4257ae4
Revert "fixing tests"
rvrangel Sep 10, 2024
e958558
Revert "removing DeleteBeforeRestore"
rvrangel Sep 10, 2024
2e8c441
make generate_ci_workflows
rvrangel Sep 10, 2024
64b52e6
Merge branch 'master' into mysqlshell-backup
rvrangel Sep 10, 2024
75b2b76
make generate_ci_workflows
rvrangel Sep 10, 2024
85fba81
deleting users + other dbs
rvrangel Sep 12, 2024
21f2604
update flags
rvrangel Sep 12, 2024
47dc753
make sure vitess default matches mysqlshell's
rvrangel Sep 13, 2024
5c08cc7
do not remove users if not loading them
rvrangel Sep 13, 2024
e37dbbb
changelog notice
rvrangel Sep 13, 2024
4418592
Merge branch 'master' into mysqlshell-backup
rvrangel Sep 13, 2024
9243f22
add ShouldStartMySQLAfterRestore()
rvrangel Sep 18, 2024
4e79a02
backup_pitr testing: validate rejoining replication stream
shlomi-noach Sep 19, 2024
7e77e86
test replication stream in ExecTestIncrementalBackupAndRestoreToTimes…
shlomi-noach Sep 19, 2024
1d5aaab
Merge branch 'main' into mysqlshell-backup
shlomi-noach Sep 19, 2024
1fa6191
Merge branch 'backup-pitr-replication' into mysqlshell-backup
shlomi-noach Sep 19, 2024
3c655a1
add missing grant
rvrangel Sep 20, 2024
4e0a0e2
update vitess operator example
rvrangel Sep 20, 2024
9218186
PR feedback
rvrangel Sep 23, 2024
301e95c
Merge remote-tracking branch 'origin/main' into mysqlshell-backup
shlomi-noach Sep 23, 2024
ae42af7
resolved conflict
shlomi-noach Sep 24, 2024
bc2cff2
add missing grant
rvrangel Sep 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make generate_ci_workflows
Signed-off-by: Renan Rangel <rrangel@slack-corp.com>
  • Loading branch information
rvrangel committed Aug 21, 2024
commit 31ba57e30af1fd3dc648a7005b04b1a30d51ce33
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's think about marking this new workflow as required when merging the PR.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed. We'll give it a couple weeks until all open PRs are in sync, then we'll make it Required.

Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.end_to_end == 'true'
uses: actions/setup-go@v5
with:
go-version: 1.22.5
go-version: 1.23.0

- name: Set up python
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.end_to_end == 'true'
Expand Down
Loading