@@ -220,7 +220,7 @@ func (cache *snapshotCache) sendHeartbeats(ctx context.Context, node string) {
220
220
}
221
221
}
222
222
223
- // SetSnapshotCacheContext updates a snapshot for a node.
223
+ // SetSnapshotCache updates a snapshot for a node.
224
224
func (cache * snapshotCache ) SetSnapshot (ctx context.Context , node string , snapshot ResourceSnapshot ) error {
225
225
cache .mu .Lock ()
226
226
defer cache .mu .Unlock ()
@@ -232,20 +232,41 @@ func (cache *snapshotCache) SetSnapshot(ctx context.Context, node string, snapsh
232
232
if info , ok := cache .status [node ]; ok {
233
233
info .mu .Lock ()
234
234
defer info .mu .Unlock ()
235
- for id , watch := range info .watches {
235
+
236
+ // responder callback for SOTW watches
237
+ respond := func (watch ResponseWatch , id int64 ) error {
236
238
version := snapshot .GetVersion (watch .Request .TypeUrl )
237
239
if version != watch .Request .VersionInfo {
238
240
cache .log .Debugf ("respond open watch %d %s%v with new version %q" , id , watch .Request .TypeUrl , watch .Request .ResourceNames , version )
239
-
240
241
resources := snapshot .GetResourcesAndTTL (watch .Request .TypeUrl )
241
242
err := cache .respond (ctx , watch .Request , watch .Response , resources , version , false )
242
243
if err != nil {
243
244
return err
244
245
}
245
-
246
246
// discard the watch
247
247
delete (info .watches , id )
248
248
}
249
+ return nil
250
+ }
251
+
252
+ // If ADS is enabled we need to order response watches so we guarantee
253
+ // sending them in the correct order. Go's default implementation
254
+ // of maps are randomized order when ranged over.
255
+ if cache .ads {
256
+ info .orderResponseWatches ()
257
+ for _ , key := range info .orderedWatches {
258
+ err := respond (info .watches [key .ID ], key .ID )
259
+ if err != nil {
260
+ return err
261
+ }
262
+ }
263
+ } else {
264
+ for id , watch := range info .watches {
265
+ err := respond (watch , id )
266
+ if err != nil {
267
+ return err
268
+ }
269
+ }
249
270
}
250
271
251
272
// We only calculate version hashes when using delta. We don't
@@ -258,7 +279,8 @@ func (cache *snapshotCache) SetSnapshot(ctx context.Context, node string, snapsh
258
279
}
259
280
}
260
281
261
- // process our delta watches
282
+ // this won't run if there are no delta watches
283
+ // to process.
262
284
for id , watch := range info .deltaWatches {
263
285
res , err := cache .respondDelta (
264
286
ctx ,
@@ -281,7 +303,7 @@ func (cache *snapshotCache) SetSnapshot(ctx context.Context, node string, snapsh
281
303
return nil
282
304
}
283
305
284
- // GetSnapshots gets the snapshot for a node, and returns an error if not found.
306
+ // GetSnapshot gets the snapshot for a node, and returns an error if not found.
285
307
func (cache * snapshotCache ) GetSnapshot (node string ) (ResourceSnapshot , error ) {
286
308
cache .mu .RLock ()
287
309
defer cache .mu .RUnlock ()
@@ -341,7 +363,6 @@ func (cache *snapshotCache) CreateWatch(request *Request, streamState stream.Str
341
363
info .mu .Unlock ()
342
364
343
365
var version string
344
-
345
366
snapshot , exists := cache .snapshots [nodeID ]
346
367
if exists {
347
368
version = snapshot .GetVersion (request .TypeUrl )
0 commit comments