@@ -36,6 +36,7 @@ type RouterController struct {
36
36
routesListConsumed bool
37
37
endpointsListConsumed bool
38
38
filteredByNamespace bool
39
+ syncing bool
39
40
40
41
RoutesListSuccessfulAtLeastOnce func () bool
41
42
EndpointsListSuccessfulAtLeastOnce func () bool
@@ -80,23 +81,18 @@ func (c *RouterController) handleFirstSync() bool {
80
81
81
82
// If either of the event queues were empty after the initial
82
83
// 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.
86
87
if c .RoutesListCount () == 0 {
87
88
c .routesListConsumed = true
88
89
}
89
90
if c .EndpointsListCount () == 0 {
90
91
c .endpointsListConsumed = true
91
92
}
92
- c .updateLastSyncProcessed ()
93
+ c .commit ()
93
94
94
- err := c .Plugin .SetSyncedAtLeastOnce ()
95
- if err == nil {
96
- return true
97
- }
98
- utilruntime .HandleError (err )
99
- return false
95
+ return true
100
96
}
101
97
102
98
// watchForFirstSync loops until the first sync has been handled.
@@ -116,16 +112,17 @@ func (c *RouterController) HandleNamespaces() {
116
112
c .lock .Lock ()
117
113
defer c .lock .Unlock ()
118
114
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
+
119
120
// Namespace filtering is assumed to be have been
120
121
// performed so long as the plugin event handler is called
121
122
// at least once.
122
123
c .filteredByNamespace = true
123
- c .updateLastSyncProcessed ()
124
+ c .commit ()
124
125
125
- glog .V (4 ).Infof ("Updating watched namespaces: %v" , namespaces )
126
- if err := c .Plugin .HandleNamespaces (namespaces ); err != nil {
127
- utilruntime .HandleError (err )
128
- }
129
126
return
130
127
}
131
128
utilruntime .HandleError (fmt .Errorf ("unable to find namespaces for router: %v" , err ))
@@ -164,18 +161,18 @@ func (c *RouterController) HandleRoute() {
164
161
c .lock .Lock ()
165
162
defer c .lock .Unlock ()
166
163
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
-
172
164
glog .V (4 ).Infof ("Processing Route: %s -> %s" , route .Name , route .Spec .To .Name )
173
165
glog .V (4 ).Infof (" Alias: %s" , route .Spec .Host )
174
166
glog .V (4 ).Infof (" Event: %s" , eventType )
175
167
176
168
if err := c .Plugin .HandleRoute (eventType , route ); err != nil {
177
169
utilruntime .HandleError (err )
178
170
}
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 ()
179
176
}
180
177
181
178
// HandleEndpoints handles a single Endpoints event and refreshes the router backend.
@@ -189,22 +186,36 @@ func (c *RouterController) HandleEndpoints() {
189
186
c .lock .Lock ()
190
187
defer c .lock .Unlock ()
191
188
189
+ if err := c .Plugin .HandleEndpoints (eventType , endpoints ); err != nil {
190
+ utilruntime .HandleError (err )
191
+ }
192
+
192
193
// Change the local sync state within the lock to ensure that all
193
194
// event handlers have the same view of sync state.
194
195
c .endpointsListConsumed = c .EndpointsListConsumed ()
195
- c .updateLastSyncProcessed ()
196
+ c .commit ()
197
+ }
196
198
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 {
198
208
utilruntime .HandleError (err )
199
209
}
200
210
}
201
211
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
+ }
209
220
}
210
221
}
0 commit comments