Skip to content

Commit 0a336da

Browse files
committed
Use adaptive set in named port index.
Should reduce memory usage significantly.
1 parent dff6bc4 commit 0a336da

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

felix/labelindex/named_port_index.go

+3-12
Original file line numberDiff line numberDiff line change
@@ -77,24 +77,15 @@ type endpointData struct {
7777
ports []model.EndpointPort
7878
parents []*npParentData
7979

80-
cachedMatchingIPSetIDs set.Set[string] /* or, as an optimization, nil if there are none */
80+
cachedMatchingIPSetIDs set.Adaptive[string]
8181
}
8282

8383
func (d *endpointData) AddMatchingIPSetID(id string) {
84-
if d.cachedMatchingIPSetIDs == nil {
85-
d.cachedMatchingIPSetIDs = set.New[string]()
86-
}
8784
d.cachedMatchingIPSetIDs.Add(id)
8885
}
8986

9087
func (d *endpointData) RemoveMatchingIPSetID(id string) {
91-
if d.cachedMatchingIPSetIDs == nil {
92-
return
93-
}
9488
d.cachedMatchingIPSetIDs.Discard(id)
95-
if d.cachedMatchingIPSetIDs.Len() == 0 {
96-
d.cachedMatchingIPSetIDs = nil
97-
}
9889
}
9990

10091
func (d *endpointData) HasParent(parent *npParentData) bool {
@@ -717,7 +708,7 @@ func (idx *SelectorAndNamedPortIndex) scanEndpointAgainstIPSets(
717708
) {
718709
// Remove any previous match from the endpoint's cache. We'll re-add it
719710
// below if the match is still correct.
720-
epData.cachedMatchingIPSetIDs = nil
711+
epData.cachedMatchingIPSetIDs.Clear()
721712

722713
// Iterate over potential new matches and incref any members that
723714
// that produces. (This may temporarily over count.)
@@ -887,7 +878,7 @@ func (idx *SelectorAndNamedPortIndex) CalculateEndpointContribution(d *endpointD
887878
// RecalcCachedContributions uses the cached set of matching IP set IDs in the endpoint
888879
// struct to quickly recalculate the endpoint's contribution to all IP sets.
889880
func (idx *SelectorAndNamedPortIndex) RecalcCachedContributions(epData *endpointData) map[string][]IPSetMember {
890-
if epData.cachedMatchingIPSetIDs == nil {
881+
if epData.cachedMatchingIPSetIDs.Len() == 0 {
891882
return nil
892883
}
893884
contrib := map[string][]IPSetMember{}

0 commit comments

Comments
 (0)