fix: multi client in direct mode - #99
Open
HuJingKang wants to merge 1 commit into
Open
Conversation
HuJingKang
force-pushed
the
fix_multi_config_client
branch
from
September 30, 2022 04:16
61efce7 to
2defc68
Compare
HuJingKang
force-pushed
the
fix_multi_config_client
branch
from
December 13, 2022 04:32
2defc68 to
79195a0
Compare
|
hujingkang seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
Contributor
|
这个问题我查下来,像是client使用默认的端口是7777,同建立多个client时,这个7777端口会被占用导致失效。 |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
问题: 直连模式下如果有多个客户端的话,所有客户端都会订阅第一个客户端的数据,导致数据错乱
经排查,
NacosConfigClient中的clusterOptions.name是由endpoint构成的,如果没有传endpoint的话,name都会是DiamondClient@undefined。所以直连模式下,所有的name都相同, 第一个client是Leader,后面所有的client都是第一个client的Follower,所以订阅的都是第一个client的数据