Skip to content
Open
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
7f308b5
feat: add Zookeeper config cache
ywxzm03 Aug 6, 2026
9ce4e2e
test: cover Zookeeper cache and watch flows
ywxzm03 Aug 6, 2026
8fe492a
refactor(zookeeper): bound config cache path locks
ywxzm03 Aug 13, 2026
dc11049
fix(zookeeper): bound config cache entries
ywxzm03 Aug 14, 2026
3a346f7
refactor(zookeeper): track watcher ownership
ywxzm03 Aug 14, 2026
ff4389f
fix(zookeeper): bound automatic watches
ywxzm03 Aug 14, 2026
9a59b60
fix(zookeeper): complete config watch lifecycle
ywxzm03 Aug 14, 2026
b4d9662
fix(zookeeper): align listener paths and empty config events
ywxzm03 Aug 14, 2026
2f7821f
fix(zookeeper): restore and clean up watches on reconnect
ywxzm03 Aug 14, 2026
ac59ef1
Merge branch 'apache:main' into feat/zk-config-cache
ywxzm03 Aug 14, 2026
e329517
Merge branch 'develop' into feat/zk-config-cache
ywxzm03 Aug 14, 2026
9828ff6
Merge remote-tracking branch 'origin/feat/zk-config-cache' into feat/…
ywxzm03 Aug 15, 2026
f5beed9
fix(zookeeper): safely remove expired cache entries
ywxzm03 Aug 17, 2026
5e78d22
fix(zookeeper): restore business watches with cache disabled
ywxzm03 Aug 17, 2026
2fb702f
Merge branch 'develop' into feat/zk-config-cache
ywxzm03 Aug 17, 2026
6a309a2
Merge branch 'develop' into feat/zk-config-cache
ywxzm03 Aug 18, 2026
266a149
fix(zookeeper): release configuration listener wait group
ywxzm03 Aug 19, 2026
4094b35
ci: configure ZooKeeper dependency for tests
ywxzm03 Aug 19, 2026
c046c1a
Merge branch 'develop' into feat/zk-config-cache
ywxzm03 Aug 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions common/constant/key.go
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ const (
ConfigSecretKey = "config-center.secret"
ConfigBackupConfigKey = "config-center.isBackupConfig"
ConfigBackupConfigPathKey = "config-center.backupConfigPath"
ConfigCacheTTLKey = "config-center.cache-ttl"
ConfigRootPathParamKey = "dubbo.config-center.root-path"
)

Expand Down
Loading
Loading