-
Notifications
You must be signed in to change notification settings - Fork 498
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
dm-operator/: support scaling a dm cluster with dm-masters and dm-workers #3186
Merged
Merged
Changes from 54 commits
Commits
Show all changes
60 commits
Select commit
Hold shift + click to select a range
08a8ae4
add dmclusters CRD
lichunzhu 5cb82ac
resolve conflicts
lichunzhu bcf58ea
Merge branch 'master' into defineDMSpec
lichunzhu 55a6365
address comment
lichunzhu 0aae8c0
Merge branch 'master' into defineDMSpec
lichunzhu f146be1
address comments
lichunzhu 94c427b
Merge branch 'defineDMSpec' of https://github.com/lichunzhu/tidb-oper…
lichunzhu 4f10a51
delete monitor ref
lichunzhu a020492
generate dmcluster client
lichunzhu 3edfaa2
address comments
lichunzhu 74aca39
Merge branch 'master' into defineDMSpec
lichunzhu 2c1bec5
address comment
lichunzhu fbe26f3
tmp commit
lichunzhu d85a9fc
resolve conflict
lichunzhu a9da15f
merge master
lichunzhu ba0f518
remove dm package
lichunzhu 7a51c07
fix bugs
lichunzhu 3ec6c86
fix bug
lichunzhu 8122c71
support start dm-master and dm-worker in cluster
lichunzhu a38bb0e
fix some bugs
lichunzhu 1e7efd8
merge master branch and resolve conflicts
lichunzhu 850035c
fix ut
lichunzhu cd3f5b4
fix dm-master start
lichunzhu f4a641d
fix dm-worker start bug
lichunzhu 5a51cbe
Merge branch 'master' of https://github.com/pingcap/tidb-operator int…
lichunzhu be4fd5e
add more column info
lichunzhu 1e4f2ac
Merge branch 'master' of https://github.com/pingcap/tidb-operator int…
lichunzhu daf81f7
Merge branch 'master' into supportStartDMCluster
lichunzhu f7c70bd
fix ut
lichunzhu 08f4695
fix verify
lichunzhu e2249f9
fix verify again
lichunzhu 161b862
address comments
lichunzhu 35a69d3
Merge branch 'master' into supportStartDMCluster
lichunzhu d3da808
regenerate code
lichunzhu 8e52fbb
address comments
lichunzhu cefe7b8
Merge branch 'master' into supportStartDMCluster
lichunzhu f1b6029
fix import cycle problem
lichunzhu 7726669
Merge branch 'supportStartDMCluster' of https://github.com/lichunzhu/…
lichunzhu 84a6309
fix check
lichunzhu 5ab015d
address comments
lichunzhu c33746e
support graceful upgrade for dm-master
lichunzhu b998616
merge master
lichunzhu f23a336
address comments
lichunzhu 7282732
Merge branch 'master' into supportUpgradeDMCluster
lichunzhu cdc031a
add dm-master scaler
lichunzhu bb94d5e
tmp
lichunzhu d5cfc31
support scale dm cluster
lichunzhu c3d3592
merge master and resolve conflicts
lichunzhu bf0db90
let scaling take precedence over upgrading
lichunzhu f6e5a55
fix ut
lichunzhu e9e6032
Merge branch 'master' into supportScaleDMCluster
lichunzhu 38db6b3
Merge branch 'master' into supportScaleDMCluster
lichunzhu 57803d5
address comments
lichunzhu aa4903b
Merge branch 'supportScaleDMCluster' of https://github.com/lichunzhu/…
lichunzhu 57e925d
Merge branch 'master' into supportScaleDMCluster
lichunzhu 4b2deec
address comment
lichunzhu 979fd98
address comment
lichunzhu ca4048c
Merge branch 'master' into supportScaleDMCluster
lichunzhu ead903f
address comment
lichunzhu 12d8cba
Merge branch 'supportScaleDMCluster' of https://github.com/lichunzhu/…
lichunzhu 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
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
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.
Why add
DM
here? I think it's not necessary as it's a method ofDMManager
which already includes theDM
.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.
Because
reclaimPolicyManager
usesSyncDM
as interface and I want to keep the same with that. I think usingSync
is also okay.