This repository has been archived by the owner on Dec 16, 2022. It is now read-only.
forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 9
Slack vitess 9 2021.06.07r13.vtctld #217
Merged
ajm188
merged 10 commits into
slack-vitess-9-2021.06.07r10.vtctld
from
slack-vitess-9-2021.06.07r13.vtctld
Jun 16, 2021
Merged
Slack vitess 9 2021.06.07r13.vtctld #217
ajm188
merged 10 commits into
slack-vitess-9-2021.06.07r10.vtctld
from
slack-vitess-9-2021.06.07r13.vtctld
Jun 16, 2021
Conversation
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
[workflow] Add vreplication_log data to workflow protos, and `VtctldServer.GetWorkflows` method Signed-off-by: Andrew Mason <amason@slack-corp.com>
In upstream (where the previous commit was cherry-picked from), all of the `New<columntype>` functions take a `string` argument, but previously (and therefore in our vtctld branch) they took a `[]byte`. Signed-off-by: Andrew Mason <amason@slack-corp.com>
Steps taken: 1. `git checkout upstream/main -- go/vt/vtctl/grpcvtctldserver/server_test.go` 2. `git checkout upstream/main -- go/vt/vtctl/grpcvtctldserver/testutil` 3. Replace imports of `google.golang.org/protobuf/proto` with `github.com/golang/protobuf/proto`, as we haven't taken the protobuf upgrade yet 4. Remove all types referenced in the tests that we haven't added to vtctldatapb yet Note: at the time, `upstream/main` resolved to `83dfb9aa59ce47a313ecb7bc12804298e76d350c`. Signed-off-by: Andrew Mason <amason@slack-corp.com>
…vschemas [vtctld] Add GetSrvVSchemas command Signed-off-by: Andrew Mason <amason@slack-corp.com>
…info [vtctldserver] Add additional backup info fields Signed-off-by: Andrew Mason <amason@slack-corp.com>
…le/BackupEngine interfaces to support populating BackupInfo.Status Signed-off-by: Andrew Mason <amason@slack-corp.com>
Signed-off-by: Andrew Mason <amason@slack-corp.com>
Signed-off-by: Andrew Mason <amason@slack-corp.com>
…scanworkflow [workflow] Call `scanWorkflow` concurrently Signed-off-by: Andrew Mason <amason@slack-corp.com>
doeg
approved these changes
Jun 15, 2021
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.
Yay 🎉 excited
add backup status to vtctld 9.0 branch
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Description
This brings the following PRs into our vtctld deploy:
VtctldServer.GetWorkflows
method vitessio/vitess#8261scanWorkflow
concurrently vitessio/vitess#8272I also needed to commit a workaround to a type change in the
sqlparser
package that we don't have yet, which just amounted to converting some strings to[]byte
. For more details, see a4a5594I also opened another PR (#218) to merge this change into this branch, and we can merge the final result. It's not merged into upstream yet, so I wanted eyes on just that diff separately.