-
Notifications
You must be signed in to change notification settings - Fork 8.8k
feature:init Namingserver server #6538
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
Merged
Merged
Changes from 26 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
50c77dc
add signature
ggbocoder b36f5b2
Merge remote-tracking branch 'upstream/2.x' into 2.x
ggbocoder e15537d
Merge remote-tracking branch 'upstream/2.x' into 2.x
ggbocoder 85398ec
Merge remote-tracking branch 'upstream/2.x' into 2.x
ggbocoder e049125
Merge remote-tracking branch 'upstream/2.x' into 2.x
ggbocoder 2939f59
Merge remote-tracking branch 'upstream/2.x' into 2.x
ggbocoder c2bf8c3
init namingserver-server
ggbocoder 4d50d79
fix ci
ggbocoder b9b899b
fix ci
ggbocoder 2abe43e
fix ci
ggbocoder 0e72bf7
register
ggbocoder b9e58e8
Merge remote-tracking branch 'upstream/2.x' into namingserver-server
ggbocoder 801744b
merge
ggbocoder a95c480
Merge remote-tracking branch 'upstream/2.x' into namingserver-server
ggbocoder c494e91
add tests
ggbocoder 527e820
add licenses
ggbocoder f9c7604
add licenses
ggbocoder e28ab6e
Merge branch '2.x' into namingserver-server
funky-eyes f4654b4
optimize
ggbocoder 5a51c56
Merge remote-tracking branch 'origin/namingserver-server' into naming…
ggbocoder fac38e0
optimize
ggbocoder 6d5cbfd
register when startup
ggbocoder 4e9bb36
code format
ggbocoder a1eab1c
fix some problems
ggbocoder 348d9b5
opt
ggbocoder f4e527b
pass ci
ggbocoder 1065d86
fix some problems
ggbocoder 0f2508f
fix some problems
ggbocoder 523b9aa
Merge remote-tracking branch 'upstream/2.x' into namingserver-server
ggbocoder 3996536
fix
ggbocoder f23a3e4
fix UT
ggbocoder ff44185
fix UT
ggbocoder e784690
Merge branch '2.x' into namingserver-server
funky-eyes 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
61 changes: 61 additions & 0 deletions
61
core/src/main/java/org/apache/seata/core/store/MappingDO.java
This file contains hidden or 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,61 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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 org.apache.seata.core.store; | ||
funky-eyes marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
public class MappingDO { | ||
private String namespace; | ||
|
||
private String cluster; | ||
|
||
private String unit; | ||
|
||
private String vGroup; | ||
|
||
|
||
public String getNamespace() { | ||
return namespace; | ||
} | ||
|
||
public void setNamespace(String namespace) { | ||
this.namespace = namespace; | ||
} | ||
|
||
public String getCluster() { | ||
return cluster; | ||
} | ||
|
||
public void setCluster(String cluster) { | ||
this.cluster = cluster; | ||
} | ||
|
||
public String getUnit() { | ||
return unit; | ||
} | ||
|
||
public void setUnit(String unit) { | ||
this.unit = unit; | ||
} | ||
|
||
public String getVGroup() { | ||
return vGroup; | ||
} | ||
|
||
public void setVGroup(String vGroup) { | ||
this.vGroup = vGroup; | ||
} | ||
|
||
} |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
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.
Uh oh!
There was an error while loading. Please reload this page.