-
-
Notifications
You must be signed in to change notification settings - Fork 10.2k
feat: support incremental configuration synchronization client #5373
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
nobodyiam
merged 53 commits into
apolloconfig:master
from
jackie-coming:feautre/IncrementalSync
Aug 9, 2025
Merged
Changes from all commits
Commits
Show all changes
53 commits
Select commit
Hold shift + click to select a range
4e8a699
init
jackie-coming 26a0e1b
init config
jackie-coming 2dd9352
code review
jackie-coming b13968c
add test
jackie-coming 24bda1d
add test
jackie-coming cf5145f
add test
jackie-coming 8cafda2
code format
jackie-coming 72676c0
code format
jackie-coming 065a092
feat: support incremental configuration synchronization client
jackie-coming e69f098
Merge remote-tracking branch 'origin/feautre/IncrementalSync' into fe…
jackie-coming a6a412a
code format
jackie-coming 07bb41c
feat: support incremental configuration synchronization client
jackie-coming a4b356c
code format
jackie-coming 5e37f55
update pom version
jackie-coming 8512776
code format
jackie-coming 5a76da9
code format
jackie-coming a4a2d05
code format
jackie-coming 04f50ac
Merge branch 'master' into feautre/IncrementalSync
nobodyiam 1b20e4e
update flag
jackie-coming 4f06613
Merge remote-tracking branch 'origin/feautre/IncrementalSync' into fe…
jackie-coming 26e8db5
Merge branch 'up_master' into feautre/IncrementalSync
jackie-coming 56df3a8
code refactor
jackie-coming 3e9151f
merge master
jackie-coming 34b390d
refactor IncrementalSync
jackie-coming 9bba12c
refactor IncrementalSync
jackie-coming d4ec343
Merge branch 'master' into feautre/IncrementalSync
nobodyiam ab0264a
Update apollo-configservice/src/main/java/com/ctrip/framework/apollo/…
jackie-coming 2d09cb3
Update apollo-configservice/src/main/java/com/ctrip/framework/apollo/…
jackie-coming b27adb0
Update pom.xml
jackie-coming 5fb6535
Update docs/zh/deployment/distributed-deployment-guide.md
jackie-coming e4b686f
refactor IncrementalSync
jackie-coming 6e8f215
Merge remote-tracking branch 'origin/feautre/IncrementalSync' into fe…
jackie-coming ca4a81b
refactor IncrementalSync
jackie-coming a0ee155
add test
jackie-coming ea5337d
add test
jackie-coming 389d0fb
code refactor
jackie-coming a016474
Update docs/en/deployment/distributed-deployment-guide.md
jackie-coming 599fa12
Merge branch 'master' into feautre/IncrementalSync
nobodyiam f59b2bc
Update apollo-configservice/src/main/java/com/ctrip/framework/apollo/…
jackie-coming 2347202
code refactor
jackie-coming 51f0f0a
Merge branch 'up_master' into feautre/IncrementalSync
jackie-coming f3de588
fix
jackie-coming dcf3936
fix
jackie-coming 3a3c383
Merge branch 'master' into feautre/IncrementalSync
nobodyiam 3c80bb1
Merge branch 'master' into feautre/IncrementalSync
nobodyiam c29a43f
fix
jackie-coming f5c3d2f
fix
jackie-coming 2b318b7
fix
jackie-coming c6162dd
Merge branch 'master' into feautre/IncrementalSync
nobodyiam 258fb52
update CHANGES.md
jackie-coming d04ded3
Merge remote-tracking branch 'origin/feautre/IncrementalSync' into fe…
jackie-coming 6487c3c
Merge branch 'master' into feautre/IncrementalSync
nobodyiam 1bab5b6
Apply suggestions from code review
nobodyiam 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
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 |
---|---|---|
|
@@ -19,6 +19,8 @@ | |
import com.ctrip.framework.apollo.biz.entity.Release; | ||
import com.ctrip.framework.apollo.biz.message.ReleaseMessageListener; | ||
import com.ctrip.framework.apollo.core.dto.ApolloNotificationMessages; | ||
import java.util.Map; | ||
import java.util.Set; | ||
|
||
/** | ||
* @author Jason Song([email protected]) | ||
|
@@ -40,4 +42,11 @@ public interface ConfigService extends ReleaseMessageListener { | |
*/ | ||
Release loadConfig(String clientAppId, String clientIp, String clientLabel, String configAppId, String | ||
configClusterName, String configNamespace, String dataCenter, ApolloNotificationMessages clientMessages); | ||
|
||
|
||
/** | ||
* @param releaseKeys | ||
* @return the ReleaseMap | ||
*/ | ||
Map<String, Release> findReleasesByReleaseKeys(Set<String> releaseKeys); | ||
} |
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.
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.