-
Couldn't load subscription status.
- Fork 13.2k
Optimize checkLocalConfig logic #11869
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
base: develop
Are you sure you want to change the base?
Changes from 1 commit
bf32067
46b5cc9
90a9eaa
8c109d8
dabda8a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -866,42 +866,36 @@ public void checkLocalConfig(CacheData cacheData) { | |
| final String group = cacheData.group; | ||
| final String tenant = cacheData.tenant; | ||
| final String envName = cacheData.envName; | ||
|
|
||
| // Check if a failover file exists for the specified dataId, group, and tenant. | ||
| File file = LocalConfigInfoProcessor.getFailoverFile(envName, dataId, group, tenant); | ||
|
|
||
| // If not using local config info and a failover file exists, load and use it. | ||
| if (!cacheData.isUseLocalConfigInfo() && file.exists()) { | ||
|
|
||
| // not using local config info, but a failover file exists | ||
| boolean failOverFileCreated = !cacheData.isUseLocalConfigInfo() && file.exists(); | ||
|
|
||
| // using local config info, but there is a change in local configuration | ||
| boolean failOverFileChanged= cacheData.isUseLocalConfigInfo() && file.exists() && cacheData.getLocalConfigInfoVersion() != file.lastModified(); | ||
|
||
|
|
||
| // using local config info, but the failover file is deleted | ||
| boolean failOverFileDeleted = cacheData.isUseLocalConfigInfo() && !file.exists(); | ||
|
|
||
| if (failOverFileCreated || failOverFileChanged) { | ||
| // load and use the file content | ||
| String content = LocalConfigInfoProcessor.getFailover(envName, dataId, group, tenant); | ||
| final String md5 = MD5Utils.md5Hex(content, Constants.ENCODE); | ||
| cacheData.setUseLocalConfigInfo(true); | ||
| cacheData.setLocalConfigInfoVersion(file.lastModified()); | ||
| cacheData.setContent(content); | ||
| LOGGER.warn( | ||
| "[{}] [failover-change] failover file created. dataId={}, group={}, tenant={}, md5={}, content={}", | ||
| envName, dataId, group, tenant, md5, ContentUtils.truncateContent(content)); | ||
| return; | ||
| "[{}] [failover-change] failover file {}. dataId={}, group={}, tenant={}, md5={}, content={}", | ||
| failOverFileCreated ? "created" : "changed", envName, dataId, group, tenant, md5, ContentUtils.truncateContent(content));; | ||
|
||
| } | ||
| // If use local config info, but the failover file is deleted, switch back to server config. | ||
| if (cacheData.isUseLocalConfigInfo() && !file.exists()) { | ||
|
|
||
|
||
| if (failOverFileDeleted) { | ||
| // switch back to server config. | ||
| cacheData.setUseLocalConfigInfo(false); | ||
| LOGGER.warn("[{}] [failover-change] failover file deleted. dataId={}, group={}, tenant={}", envName, | ||
| dataId, group, tenant); | ||
| return; | ||
| } | ||
|
|
||
| // When the failover file content changes, indicating a change in local configuration. | ||
| if (cacheData.isUseLocalConfigInfo() && file.exists() | ||
| && cacheData.getLocalConfigInfoVersion() != file.lastModified()) { | ||
| String content = LocalConfigInfoProcessor.getFailover(envName, dataId, group, tenant); | ||
| final String md5 = MD5Utils.md5Hex(content, Constants.ENCODE); | ||
| cacheData.setUseLocalConfigInfo(true); | ||
| cacheData.setLocalConfigInfoVersion(file.lastModified()); | ||
| cacheData.setContent(content); | ||
| LOGGER.warn( | ||
| "[{}] [failover-change] failover file changed. dataId={}, group={}, tenant={}, md5={}, content={}", | ||
| envName, dataId, group, tenant, md5, ContentUtils.truncateContent(content)); | ||
| } | ||
| } | ||
|
|
||
|
|
||
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.
麻烦使用nacos-code-style进行reformat, 不需要删除缩紧
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.
done