Skip to content

Commit c68a3f8

Browse files
author
OpenShift Bot
authored
Merge pull request #12199 from marun/ensure-router-reload
Merged by openshift-bot
2 parents d08ed34 + e51b3ed commit c68a3f8

14 files changed

+212
-326
lines changed

pkg/router/controller/controller.go

+40-29
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ type RouterController struct {
3636
routesListConsumed bool
3737
endpointsListConsumed bool
3838
filteredByNamespace bool
39+
syncing bool
3940

4041
RoutesListSuccessfulAtLeastOnce func() bool
4142
EndpointsListSuccessfulAtLeastOnce func() bool
@@ -80,23 +81,18 @@ func (c *RouterController) handleFirstSync() bool {
8081

8182
// If either of the event queues were empty after the initial
8283
// List, the tracking listConsumed variable's default value of
83-
// 'false' may prevent the router from reloading to indicate the
84-
// readiness status. Set the value to 'true' to ensure that a
85-
// reload will be performed if necessary.
84+
// 'false' may prevent the router from committing the readiness
85+
// status. Set the value to 'true' to ensure that state will be
86+
// committed if necessary.
8687
if c.RoutesListCount() == 0 {
8788
c.routesListConsumed = true
8889
}
8990
if c.EndpointsListCount() == 0 {
9091
c.endpointsListConsumed = true
9192
}
92-
c.updateLastSyncProcessed()
93+
c.commit()
9394

94-
err := c.Plugin.SetSyncedAtLeastOnce()
95-
if err == nil {
96-
return true
97-
}
98-
utilruntime.HandleError(err)
99-
return false
95+
return true
10096
}
10197

10298
// watchForFirstSync loops until the first sync has been handled.
@@ -116,16 +112,17 @@ func (c *RouterController) HandleNamespaces() {
116112
c.lock.Lock()
117113
defer c.lock.Unlock()
118114

115+
glog.V(4).Infof("Updating watched namespaces: %v", namespaces)
116+
if err := c.Plugin.HandleNamespaces(namespaces); err != nil {
117+
utilruntime.HandleError(err)
118+
}
119+
119120
// Namespace filtering is assumed to be have been
120121
// performed so long as the plugin event handler is called
121122
// at least once.
122123
c.filteredByNamespace = true
123-
c.updateLastSyncProcessed()
124+
c.commit()
124125

125-
glog.V(4).Infof("Updating watched namespaces: %v", namespaces)
126-
if err := c.Plugin.HandleNamespaces(namespaces); err != nil {
127-
utilruntime.HandleError(err)
128-
}
129126
return
130127
}
131128
utilruntime.HandleError(fmt.Errorf("unable to find namespaces for router: %v", err))
@@ -164,18 +161,18 @@ func (c *RouterController) HandleRoute() {
164161
c.lock.Lock()
165162
defer c.lock.Unlock()
166163

167-
// Change the local sync state within the lock to ensure that all
168-
// event handlers have the same view of sync state.
169-
c.routesListConsumed = c.RoutesListConsumed()
170-
c.updateLastSyncProcessed()
171-
172164
glog.V(4).Infof("Processing Route: %s -> %s", route.Name, route.Spec.To.Name)
173165
glog.V(4).Infof(" Alias: %s", route.Spec.Host)
174166
glog.V(4).Infof(" Event: %s", eventType)
175167

176168
if err := c.Plugin.HandleRoute(eventType, route); err != nil {
177169
utilruntime.HandleError(err)
178170
}
171+
172+
// Change the local sync state within the lock to ensure that all
173+
// event handlers have the same view of sync state.
174+
c.routesListConsumed = c.RoutesListConsumed()
175+
c.commit()
179176
}
180177

181178
// HandleEndpoints handles a single Endpoints event and refreshes the router backend.
@@ -189,22 +186,36 @@ func (c *RouterController) HandleEndpoints() {
189186
c.lock.Lock()
190187
defer c.lock.Unlock()
191188

189+
if err := c.Plugin.HandleEndpoints(eventType, endpoints); err != nil {
190+
utilruntime.HandleError(err)
191+
}
192+
192193
// Change the local sync state within the lock to ensure that all
193194
// event handlers have the same view of sync state.
194195
c.endpointsListConsumed = c.EndpointsListConsumed()
195-
c.updateLastSyncProcessed()
196+
c.commit()
197+
}
196198

197-
if err := c.Plugin.HandleEndpoints(eventType, endpoints); err != nil {
199+
// commit notifies the plugin that it is safe to commit state.
200+
func (c *RouterController) commit() {
201+
syncing := !(c.endpointsListConsumed && c.routesListConsumed &&
202+
(c.Namespaces == nil || c.filteredByNamespace))
203+
c.logSyncState(syncing)
204+
if syncing {
205+
return
206+
}
207+
if err := c.Plugin.Commit(); err != nil {
198208
utilruntime.HandleError(err)
199209
}
200210
}
201211

202-
// updateLastSyncProcessed notifies the plugin if the most recent sync
203-
// of router resources has been completed.
204-
func (c *RouterController) updateLastSyncProcessed() {
205-
lastSyncProcessed := c.endpointsListConsumed && c.routesListConsumed &&
206-
(c.Namespaces == nil || c.filteredByNamespace)
207-
if err := c.Plugin.SetLastSyncProcessed(lastSyncProcessed); err != nil {
208-
utilruntime.HandleError(err)
212+
func (c *RouterController) logSyncState(syncing bool) {
213+
if c.syncing != syncing {
214+
c.syncing = syncing
215+
if c.syncing {
216+
glog.V(4).Infof("Router sync in progress")
217+
} else {
218+
glog.V(4).Infof("Router sync complete")
219+
}
209220
}
210221
}

pkg/router/controller/controller_test.go

+18-20
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ import (
1111
)
1212

1313
type fakeRouterPlugin struct {
14-
lastSyncProcessed bool
15-
syncedAtLeastOnce bool
14+
commitRequested bool
1615
}
1716

1817
func (p *fakeRouterPlugin) HandleRoute(t watch.EventType, route *routeapi.Route) error {
@@ -28,13 +27,8 @@ func (p *fakeRouterPlugin) HandleNamespaces(namespaces sets.String) error {
2827
return nil
2928
}
3029

31-
func (p *fakeRouterPlugin) SetLastSyncProcessed(processed bool) error {
32-
p.lastSyncProcessed = processed
33-
return nil
34-
}
35-
36-
func (p *fakeRouterPlugin) SetSyncedAtLeastOnce() error {
37-
p.syncedAtLeastOnce = true
30+
func (p *fakeRouterPlugin) Commit() error {
31+
p.commitRequested = true
3832
return nil
3933
}
4034

@@ -45,7 +39,7 @@ func (n fakeNamespaceLister) NamespaceNames() (sets.String, error) {
4539
return sets.NewString("foo"), nil
4640
}
4741

48-
func TestRouterController_updateLastSyncProcessed(t *testing.T) {
42+
func TestRouterController_commit(t *testing.T) {
4943
p := fakeRouterPlugin{}
5044
routesListConsumed := true
5145
c := RouterController{
@@ -69,30 +63,34 @@ func TestRouterController_updateLastSyncProcessed(t *testing.T) {
6963
NamespaceRetries: 1,
7064
}
7165

66+
expectedMsg := "commit not expected to have been requested"
67+
notExpectedMsg := "commit expected to have been requested"
68+
7269
// Simulate the initial sync
7370
c.HandleNamespaces()
74-
if p.lastSyncProcessed {
75-
t.Fatalf("last sync not expected to have been processed")
71+
if p.commitRequested {
72+
t.Fatalf(notExpectedMsg)
7673
}
7774
c.HandleEndpoints()
78-
if p.lastSyncProcessed {
79-
t.Fatalf("last sync not expected to have been processed")
75+
if p.commitRequested {
76+
t.Fatalf(notExpectedMsg)
8077
}
8178
c.HandleRoute()
82-
if !p.lastSyncProcessed {
83-
t.Fatalf("last sync expected to have been processed")
79+
if !p.commitRequested {
80+
t.Fatalf(expectedMsg)
8481
}
8582

8683
// Simulate a relist
84+
p.commitRequested = false
8785
routesListConsumed = false
8886
c.HandleRoute()
89-
if p.lastSyncProcessed {
90-
t.Fatalf("last sync not expected to have been processed")
87+
if p.commitRequested {
88+
t.Fatalf(notExpectedMsg)
9189
}
9290
routesListConsumed = true
9391
c.HandleRoute()
94-
if !p.lastSyncProcessed {
95-
t.Fatalf("last sync expected to have been processed")
92+
if !p.commitRequested {
93+
t.Fatalf(expectedMsg)
9694
}
9795

9896
}

pkg/router/controller/extended_validator.go

+2-6
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,6 @@ func (p *ExtendedValidator) HandleNamespaces(namespaces sets.String) error {
7979
return p.plugin.HandleNamespaces(namespaces)
8080
}
8181

82-
func (p *ExtendedValidator) SetLastSyncProcessed(processed bool) error {
83-
return p.plugin.SetLastSyncProcessed(processed)
84-
}
85-
86-
func (p *ExtendedValidator) SetSyncedAtLeastOnce() error {
87-
return p.plugin.SetSyncedAtLeastOnce()
82+
func (p *ExtendedValidator) Commit() error {
83+
return p.plugin.Commit()
8884
}

pkg/router/controller/host_admitter.go

+2-6
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,8 @@ func (p *HostAdmitter) HandleNamespaces(namespaces sets.String) error {
148148
return p.plugin.HandleNamespaces(namespaces)
149149
}
150150

151-
func (p *HostAdmitter) SetLastSyncProcessed(processed bool) error {
152-
return p.plugin.SetLastSyncProcessed(processed)
153-
}
154-
155-
func (p *HostAdmitter) SetSyncedAtLeastOnce() error {
156-
return p.plugin.SetSyncedAtLeastOnce()
151+
func (p *HostAdmitter) Commit() error {
152+
return p.plugin.Commit()
157153
}
158154

159155
// addRoute admits routes based on subdomain ownership - returns errors if the route is not admitted.

pkg/router/controller/status.go

+2-6
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,6 @@ func (a *StatusAdmitter) HandleNamespaces(namespaces sets.String) error {
312312
return a.plugin.HandleNamespaces(namespaces)
313313
}
314314

315-
func (a *StatusAdmitter) SetLastSyncProcessed(processed bool) error {
316-
return a.plugin.SetLastSyncProcessed(processed)
317-
}
318-
319-
func (a *StatusAdmitter) SetSyncedAtLeastOnce() error {
320-
return a.plugin.SetSyncedAtLeastOnce()
315+
func (a *StatusAdmitter) Commit() error {
316+
return a.plugin.Commit()
321317
}

pkg/router/controller/status_test.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,7 @@ func (p *fakePlugin) HandleEndpoints(watch.EventType, *kapi.Endpoints) error {
3939
func (p *fakePlugin) HandleNamespaces(namespaces sets.String) error {
4040
return fmt.Errorf("not expected")
4141
}
42-
func (p *fakePlugin) SetLastSyncProcessed(processed bool) error {
43-
return fmt.Errorf("not expected")
44-
}
45-
46-
func (p *fakePlugin) SetSyncedAtLeastOnce() error {
42+
func (p *fakePlugin) Commit() error {
4743
return fmt.Errorf("not expected")
4844
}
4945

pkg/router/controller/unique_host.go

+2-6
Original file line numberDiff line numberDiff line change
@@ -255,12 +255,8 @@ func (p *UniqueHost) HandleNamespaces(namespaces sets.String) error {
255255
return p.plugin.HandleNamespaces(namespaces)
256256
}
257257

258-
func (p *UniqueHost) SetLastSyncProcessed(processed bool) error {
259-
return p.plugin.SetLastSyncProcessed(processed)
260-
}
261-
262-
func (p *UniqueHost) SetSyncedAtLeastOnce() error {
263-
return p.plugin.SetSyncedAtLeastOnce()
258+
func (p *UniqueHost) Commit() error {
259+
return p.plugin.Commit()
264260
}
265261

266262
// routeKeys returns the internal router key to use for the given Route.

pkg/router/f5/plugin.go

+1-6
Original file line numberDiff line numberDiff line change
@@ -630,11 +630,6 @@ func (p *F5Plugin) HandleRoute(eventType watch.EventType,
630630
}
631631

632632
// No-op since f5 configuration can be updated piecemeal
633-
func (p *F5Plugin) SetLastSyncProcessed(processed bool) error {
634-
return nil
635-
}
636-
637-
// No-op since f5 has its own concept of what 'ready' means
638-
func (p *F5Plugin) SetSyncedAtLeastOnce() error {
633+
func (p *F5Plugin) Commit() error {
639634
return nil
640635
}

pkg/router/interfaces.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,5 @@ type Plugin interface {
1616
// If sent, filter the list of accepted routes and endpoints to this set
1717
HandleNamespaces(namespaces sets.String) error
1818
HandleNode(watch.EventType, *kapi.Node) error
19-
SetLastSyncProcessed(processed bool) error
20-
SetSyncedAtLeastOnce() error
19+
Commit() error
2120
}

0 commit comments

Comments
 (0)