mirror of
https://github.com/kubernetes/client-go.git
synced 2025-06-24 06:07:48 +00:00
Retain objects for a limited lifetime in the mutation cache detector by default
Kubernetes-commit: 81d05e91b5b5e653e20cc6ab620de08abfd0cbc2
This commit is contained in:
parent
8c19b9f4a6
commit
f8772cd39b
20
tools/cache/mutation_detector.go
vendored
20
tools/cache/mutation_detector.go
vendored
@ -48,7 +48,7 @@ func NewCacheMutationDetector(name string) MutationDetector {
|
|||||||
return dummyMutationDetector{}
|
return dummyMutationDetector{}
|
||||||
}
|
}
|
||||||
klog.Warningln("Mutation detector is enabled, this will result in memory leakage.")
|
klog.Warningln("Mutation detector is enabled, this will result in memory leakage.")
|
||||||
return &defaultCacheMutationDetector{name: name, period: 1 * time.Second}
|
return &defaultCacheMutationDetector{name: name, period: 1 * time.Second, retainDuration: 2 * time.Minute}
|
||||||
}
|
}
|
||||||
|
|
||||||
type dummyMutationDetector struct{}
|
type dummyMutationDetector struct{}
|
||||||
@ -68,6 +68,10 @@ type defaultCacheMutationDetector struct {
|
|||||||
lock sync.Mutex
|
lock sync.Mutex
|
||||||
cachedObjs []cacheObj
|
cachedObjs []cacheObj
|
||||||
|
|
||||||
|
retainDuration time.Duration
|
||||||
|
lastRotated time.Time
|
||||||
|
retainedCachedObjs []cacheObj
|
||||||
|
|
||||||
// failureFunc is injectable for unit testing. If you don't have it, the process will panic.
|
// failureFunc is injectable for unit testing. If you don't have it, the process will panic.
|
||||||
// This panic is intentional, since turning on this detection indicates you want a strong
|
// This panic is intentional, since turning on this detection indicates you want a strong
|
||||||
// failure signal. This failure is effectively a p0 bug and you can't trust process results
|
// failure signal. This failure is effectively a p0 bug and you can't trust process results
|
||||||
@ -84,6 +88,14 @@ type cacheObj struct {
|
|||||||
func (d *defaultCacheMutationDetector) Run(stopCh <-chan struct{}) {
|
func (d *defaultCacheMutationDetector) Run(stopCh <-chan struct{}) {
|
||||||
// we DON'T want protection from panics. If we're running this code, we want to die
|
// we DON'T want protection from panics. If we're running this code, we want to die
|
||||||
for {
|
for {
|
||||||
|
if d.lastRotated.IsZero() {
|
||||||
|
d.lastRotated = time.Now()
|
||||||
|
} else if time.Now().Sub(d.lastRotated) > d.retainDuration {
|
||||||
|
d.retainedCachedObjs = d.cachedObjs
|
||||||
|
d.cachedObjs = nil
|
||||||
|
d.lastRotated = time.Now()
|
||||||
|
}
|
||||||
|
|
||||||
d.CompareObjects()
|
d.CompareObjects()
|
||||||
|
|
||||||
select {
|
select {
|
||||||
@ -120,6 +132,12 @@ func (d *defaultCacheMutationDetector) CompareObjects() {
|
|||||||
altered = true
|
altered = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
for i, obj := range d.retainedCachedObjs {
|
||||||
|
if !reflect.DeepEqual(obj.cached, obj.copied) {
|
||||||
|
fmt.Printf("CACHE %s[%d] ALTERED!\n%v\n", d.name, i, diff.ObjectGoPrintSideBySide(obj.cached, obj.copied))
|
||||||
|
altered = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if altered {
|
if altered {
|
||||||
msg := fmt.Sprintf("cache %s modified", d.name)
|
msg := fmt.Sprintf("cache %s modified", d.name)
|
||||||
|
Loading…
Reference in New Issue
Block a user