Skip to content

Commit 0c7f59b

Browse files
committed
bugfix: the issue of possible infinite loop when cleaning up expired metadata info
1 parent 7d09195 commit 0c7f59b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/client/AbstractServiceDiscovery.java

+5
Original file line numberDiff line numberDiff line change
@@ -115,19 +115,24 @@ private AbstractServiceDiscovery(ApplicationModel applicationModel, String servi
115115

116116
private void removeExpiredMetadataInfo(int metadataInfoCacheSize, int metadataInfoCacheExpireTime) {
117117
Long nextTime = null;
118+
// Cache cleanup is only required when the cache size exceeds the cache limit.
118119
if (metadataInfos.size() > metadataInfoCacheSize) {
119120
List<MetadataInfoStat> values = new ArrayList<>(metadataInfos.values());
121+
// Place the earliest data at the front
120122
values.sort(Comparator.comparingLong(MetadataInfoStat::getUpdateTime));
121123
for (MetadataInfoStat v : values) {
122124
long time = System.currentTimeMillis() - v.getUpdateTime();
123125
if (time > metadataInfoCacheExpireTime) {
124126
metadataInfos.remove(v.metadataInfo.getRevision(), v);
125127
} else {
128+
// Calculate how long it will take for the next task to start
126129
nextTime = metadataInfoCacheExpireTime - time;
127130
break;
128131
}
129132
}
130133
}
134+
// If there is no metadata to clean up this time, the next task will start within half of the cache expiration
135+
// time.
131136
startRefreshCache(
132137
nextTime == null ? metadataInfoCacheExpireTime / 2 : nextTime,
133138
metadataInfoCacheSize,

0 commit comments

Comments
 (0)