Skip to content

Commit 0fb7032

Browse files
committed
router: Minimize reloads for removal and filtering
This change ensures that stateChanged is only set to true for endpoint and route removal and namespace filtering if state was changed.
1 parent 61edc96 commit 0fb7032

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pkg/router/template/router.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -461,11 +461,10 @@ func (r *templateRouter) FilterNamespaces(namespaces sets.String) {
461461
r.lock.Lock()
462462
defer r.lock.Unlock()
463463

464-
r.stateChanged = true
465-
466464
if len(namespaces) == 0 {
467465
r.state = make(map[string]ServiceAliasConfig)
468466
r.serviceUnits = make(map[string]ServiceUnit)
467+
r.stateChanged = true
469468
}
470469
for k := range r.serviceUnits {
471470
// TODO: the id of a service unit should be defined inside this class, not passed in from the outside
@@ -475,6 +474,7 @@ func (r *templateRouter) FilterNamespaces(namespaces sets.String) {
475474
continue
476475
}
477476
delete(r.serviceUnits, k)
477+
r.stateChanged = true
478478
}
479479

480480
for k := range r.state {
@@ -483,6 +483,7 @@ func (r *templateRouter) FilterNamespaces(namespaces sets.String) {
483483
continue
484484
}
485485
delete(r.state, k)
486+
r.stateChanged = true
486487
}
487488
}
488489

@@ -534,8 +535,6 @@ func (r *templateRouter) DeleteEndpoints(id string) {
534535
r.lock.Lock()
535536
defer r.lock.Unlock()
536537

537-
r.stateChanged = true
538-
539538
service, ok := r.findMatchingServiceUnit(id)
540539
if !ok {
541540
return
@@ -551,6 +550,8 @@ func (r *templateRouter) DeleteEndpoints(id string) {
551550
r.peerEndpoints = []Endpoint{}
552551
glog.V(4).Infof("Peer endpoint table has been cleared")
553552
}
553+
554+
r.stateChanged = true
554555
}
555556

556557
// routeKey generates route key in form of Namespace_Name. This is NOT the normal key structure of ns/name because
@@ -658,8 +659,6 @@ func (r *templateRouter) RemoveRoute(route *routeapi.Route) {
658659
r.lock.Lock()
659660
defer r.lock.Unlock()
660661

661-
r.stateChanged = true
662-
663662
routeKey := r.routeKey(route)
664663
serviceAliasConfig, ok := r.state[routeKey]
665664
if !ok {
@@ -668,6 +667,7 @@ func (r *templateRouter) RemoveRoute(route *routeapi.Route) {
668667

669668
r.cleanUpServiceAliasConfig(&serviceAliasConfig)
670669
delete(r.state, routeKey)
670+
r.stateChanged = true
671671
}
672672

673673
// AddEndpoints adds new Endpoints for the given id.

0 commit comments

Comments
 (0)