Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated cherry pick of #84970: - Delete backing string set from a threadSafeMap index when the string set length reaches 0 #88005

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions staging/src/k8s.io/client-go/tools/cache/BUILD
Expand Up @@ -20,6 +20,7 @@ go_test(
"reflector_test.go",
"shared_informer_test.go",
"store_test.go",
"thread_safe_store_test.go",
"undelta_store_test.go",
],
embed = [":go_default_library"],
Expand Down
7 changes: 7 additions & 0 deletions staging/src/k8s.io/client-go/tools/cache/thread_safe_store.go
Expand Up @@ -292,6 +292,13 @@ func (c *threadSafeMap) deleteFromIndices(obj interface{}, key string) {
set := index[indexValue]
if set != nil {
set.Delete(key)

// If we don't delete the set when zero, indices with high cardinality
// short lived resources can cause memory to increase over time from
// unused empty sets. See `kubernetes/kubernetes/issues/84959`.
if len(set) == 0 {
delete(index, indexValue)
}
}
}
}
Expand Down
92 changes: 92 additions & 0 deletions staging/src/k8s.io/client-go/tools/cache/thread_safe_store_test.go
@@ -0,0 +1,92 @@
/*
Copyright 2019 The Kubernetes Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package cache

import (
"testing"
)

func TestThreadSafeStoreDeleteRemovesEmptySetsFromIndex(t *testing.T) {
testIndexer := "testIndexer"

indexers := Indexers{
testIndexer: func(obj interface{}) (strings []string, e error) {
indexes := []string{obj.(string)}
return indexes, nil
},
}

indices := Indices{}
store := NewThreadSafeStore(indexers, indices).(*threadSafeMap)

testKey := "testKey"

store.Add(testKey, testKey)

// Assumption check, there should be a set for the `testKey` with one element in the added index
set := store.indices[testIndexer][testKey]

if len(set) != 1 {
t.Errorf("Initial assumption of index backing string set having 1 element failed. Actual elements: %d", len(set))
return
}

store.Delete(testKey)
set, present := store.indices[testIndexer][testKey]

if present {
t.Errorf("Index backing string set not deleted from index. Set length: %d", len(set))
}
}

func TestThreadSafeStoreAddKeepsNonEmptySetPostDeleteFromIndex(t *testing.T) {
testIndexer := "testIndexer"
testIndex := "testIndex"

indexers := Indexers{
testIndexer: func(obj interface{}) (strings []string, e error) {
indexes := []string{testIndex}
return indexes, nil
},
}

indices := Indices{}
store := NewThreadSafeStore(indexers, indices).(*threadSafeMap)

store.Add("retain", "retain")
store.Add("delete", "delete")

// Assumption check, there should be a set for the `testIndex` with two elements
set := store.indices[testIndexer][testIndex]

if len(set) != 2 {
t.Errorf("Initial assumption of index backing string set having 2 elements failed. Actual elements: %d", len(set))
return
}

store.Delete("delete")
set, present := store.indices[testIndexer][testIndex]

if !present {
t.Errorf("Index backing string set erroneously deleted from index.")
return
}

if len(set) != 1 {
t.Errorf("Index backing string set has incorrect length, expect 1. Set length: %d", len(set))
}
}