Fix setting resource version after init events for RV=0 case
Kubernetes-commit: 6fb59e94a31cc0288c861e791e5b6e3d9903ca84
This commit is contained in:
parent
50f153f229
commit
6cab3e1a4b
|
@ -488,10 +488,19 @@ func (c *cacheWatcher) processInterval(ctx context.Context, cacheInterval *watch
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
c.sendWatchCacheEvent(event)
|
c.sendWatchCacheEvent(event)
|
||||||
|
|
||||||
// With some events already sent, update resourceVersion so that
|
// With some events already sent, update resourceVersion so that
|
||||||
// events that were buffered and not yet processed won't be delivered
|
// events that were buffered and not yet processed won't be delivered
|
||||||
// to this watcher second time causing going back in time.
|
// to this watcher second time causing going back in time.
|
||||||
resourceVersion = event.ResourceVersion
|
//
|
||||||
|
// There is one case where events are not necessary ordered by
|
||||||
|
// resourceVersion, being a case of watching from resourceVersion=0,
|
||||||
|
// which at the beginning returns the state of each objects.
|
||||||
|
// For the purpose of it, we need to max it with the resource version
|
||||||
|
// that we have so far.
|
||||||
|
if event.ResourceVersion > resourceVersion {
|
||||||
|
resourceVersion = event.ResourceVersion
|
||||||
|
}
|
||||||
initEventCount++
|
initEventCount++
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,12 +28,14 @@ import (
|
||||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||||
"k8s.io/apimachinery/pkg/fields"
|
"k8s.io/apimachinery/pkg/fields"
|
||||||
"k8s.io/apimachinery/pkg/labels"
|
"k8s.io/apimachinery/pkg/labels"
|
||||||
|
"k8s.io/apimachinery/pkg/runtime"
|
||||||
"k8s.io/apimachinery/pkg/runtime/schema"
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
||||||
"k8s.io/apimachinery/pkg/util/diff"
|
"k8s.io/apimachinery/pkg/util/diff"
|
||||||
"k8s.io/apimachinery/pkg/util/wait"
|
"k8s.io/apimachinery/pkg/util/wait"
|
||||||
"k8s.io/apimachinery/pkg/watch"
|
"k8s.io/apimachinery/pkg/watch"
|
||||||
"k8s.io/apiserver/pkg/storage"
|
"k8s.io/apiserver/pkg/storage"
|
||||||
utilflowcontrol "k8s.io/apiserver/pkg/util/flowcontrol"
|
utilflowcontrol "k8s.io/apiserver/pkg/util/flowcontrol"
|
||||||
|
"k8s.io/client-go/tools/cache"
|
||||||
testingclock "k8s.io/utils/clock/testing"
|
testingclock "k8s.io/utils/clock/testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -285,6 +287,63 @@ func TestCacheWatcherStoppedOnDestroy(t *testing.T) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestResourceVersionAfterInitEvents(t *testing.T) {
|
||||||
|
getAttrsFunc := func(obj runtime.Object) (labels.Set, fields.Set, error) {
|
||||||
|
return nil, nil, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
const numObjects = 10
|
||||||
|
store := cache.NewIndexer(storeElementKey, storeElementIndexers(nil))
|
||||||
|
|
||||||
|
for i := 0; i < numObjects; i++ {
|
||||||
|
elem := makeTestStoreElement(makeTestPod(fmt.Sprintf("pod-%d", i), uint64(i)))
|
||||||
|
store.Add(elem)
|
||||||
|
}
|
||||||
|
|
||||||
|
wci, err := newCacheIntervalFromStore(numObjects, store, getAttrsFunc)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
filter := func(_ string, _ labels.Set, _ fields.Set) bool { return true }
|
||||||
|
forget := func(_ bool) {}
|
||||||
|
deadline := time.Now().Add(time.Minute)
|
||||||
|
w := newCacheWatcher(numObjects+1, filter, forget, testVersioner{}, deadline, true, schema.GroupResource{Resource: "pods"}, "")
|
||||||
|
|
||||||
|
// Simulate a situation when the last event will that was already in
|
||||||
|
// the state, wasn't yet processed by cacher and will be delivered
|
||||||
|
// via channel again.
|
||||||
|
event := &watchCacheEvent{
|
||||||
|
Type: watch.Added,
|
||||||
|
Object: makeTestPod(fmt.Sprintf("pod-%d", numObjects-1), uint64(numObjects-1)),
|
||||||
|
ResourceVersion: uint64(numObjects - 1),
|
||||||
|
}
|
||||||
|
if !w.add(event, time.NewTimer(time.Second)) {
|
||||||
|
t.Fatalf("failed to add event")
|
||||||
|
}
|
||||||
|
w.stopLocked()
|
||||||
|
|
||||||
|
wg := sync.WaitGroup{}
|
||||||
|
wg.Add(1)
|
||||||
|
go func() {
|
||||||
|
defer wg.Done()
|
||||||
|
w.processInterval(context.Background(), wci, uint64(numObjects-1))
|
||||||
|
}()
|
||||||
|
|
||||||
|
// We expect all init events to be delivered.
|
||||||
|
for i := 0; i < numObjects; i++ {
|
||||||
|
<-w.ResultChan()
|
||||||
|
}
|
||||||
|
// We don't expect any other event to be delivered and thus
|
||||||
|
// the ResultChan to be closed.
|
||||||
|
result, ok := <-w.ResultChan()
|
||||||
|
if ok {
|
||||||
|
t.Errorf("unexpected event: %#v", result)
|
||||||
|
}
|
||||||
|
|
||||||
|
wg.Wait()
|
||||||
|
}
|
||||||
|
|
||||||
func TestTimeBucketWatchersBasic(t *testing.T) {
|
func TestTimeBucketWatchersBasic(t *testing.T) {
|
||||||
filter := func(_ string, _ labels.Set, _ fields.Set) bool {
|
filter := func(_ string, _ labels.Set, _ fields.Set) bool {
|
||||||
return true
|
return true
|
||||||
|
|
Loading…
Reference in New Issue