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

[WIP] Use adaptive set in named port index #10027

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

fasaxc
Copy link
Member

@fasaxc fasaxc commented Mar 21, 2025

Description

Add an "adaptive" implementation of set.Set that uses a different storage approach depending on number of items.

  • 0 items: store a nil pointer.
  • 1 item: store pointer to the item
  • 2-16 items: store pointer to array of that exact length.
  • 17+: store pointer to a proper map.

It is faster and uses a fraction of the RAM for 0-16 items, then its performance becomes similar to the normal set.Typed (with slight overhead).

Use the map in the named port index, where we have many sets that are generally expected to be very small.

Seems like a pretty decent speed win in the calc graph's benchmarks (not expecting these to show an occupancy win):

Before:

$ go test -bench=Bench -run=^$
goos: linux
goarch: amd64
pkg: github.com/projectcalico/calico/felix/calc
cpu: Intel(R) Core(TM) i9-8950HK CPU @ 2.90GHz
BenchmarkInitialSnapshot200Local250kTotal10000TagPols-12      	       1	4358202671 ns/op	        29.00 IPSets	     20761 Msgs	     10000 Policies	         4.358 s	1,048,605,512 B/op	 9778743 allocs/op
BenchmarkInitialSnapshot200Local10kTotal1000NetsetPols-12     	       2	 822775190 ns/op	      1000 IPSets	      4703 Msgs	      1000 Policies	         0.8979 s	254,608,060 B/op	 2103430 allocs/op
BenchmarkInitialSnapshot200Local10kTotal10000NetsetPols-12    	       1	12544321016 ns/op	     10000 IPSets	     40703 Msgs	     10000 Policies	        12.54 s	2,624,003,960 B/op	19698422 allocs/op
PASS
ok  	github.com/projectcalico/calico/felix/calc	21.097s

after:

$ go test -bench=Bench -run=^$
goos: linux
goarch: amd64
pkg: github.com/projectcalico/calico/felix/calc
cpu: Intel(R) Core(TM) i9-8950HK CPU @ 2.90GHz
BenchmarkInitialSnapshot200Local250kTotal10000TagPols-12      	       1	3538699472 ns/op	        29.00 IPSets	     20761 Msgs	     10000 Policies	         3.539 s	1,012,652,872 B/op	11030611 allocs/op
BenchmarkInitialSnapshot200Local10kTotal1000NetsetPols-12     	       2	 754358984 ns/op	      1000 IPSets	      4703 Msgs	      1000 Policies	         0.7558 s	255,158,588 B/op	 2164826 allocs/op
BenchmarkInitialSnapshot200Local10kTotal10000NetsetPols-12    	       1	9483387038 ns/op	     10000 IPSets	     40703 Msgs	     10000 Policies	         9.483 s	2,619,997,536 B/op	19750833 allocs/op
PASS
ok  	github.com/projectcalico/calico/felix/calc	16.734s

Related issues/PRs

Todos

  • Tests
  • Documentation
  • Release note

Release Note

Reduce memory usage per endpoint in the selector index.

Reminder for the reviewer

Make sure that this PR has the correct labels and milestone set.

Every PR needs one docs-* label.

  • docs-pr-required: This change requires a change to the documentation that has not been completed yet.
  • docs-completed: This change has all necessary documentation completed.
  • docs-not-required: This change has no user-facing impact and requires no docs.

Every PR needs one release-note-* label.

  • release-note-required: This PR has user-facing changes. Most PRs should have this label.
  • release-note-not-required: This PR has no user-facing changes.

Other optional labels:

  • cherry-pick-candidate: This PR should be cherry-picked to an earlier release. For bug fixes only.
  • needs-operator-pr: This PR is related to install and requires a corresponding change to the operator.

@fasaxc fasaxc requested a review from a team as a code owner March 21, 2025 11:46
@marvin-tigera marvin-tigera added this to the Calico v3.30.0 milestone Mar 21, 2025
@marvin-tigera marvin-tigera added release-note-required Change has user-facing impact (no matter how small) docs-pr-required Change is not yet documented labels Mar 21, 2025
@fasaxc fasaxc force-pushed the adaptive-set branch 2 times, most recently from 0a336da to 54f7f1a Compare March 21, 2025 13:58
@fasaxc fasaxc changed the title Use adaptive set in named port index [WIP] Use adaptive set in named port index Mar 24, 2025
fasaxc added 3 commits March 24, 2025 16:12
Stores its contents differently depending on the number of items.

- 0 items -> size=0 ptr=nil
- 1 item  -> size=1 ptr=<pointer to item>
- 2-16 items -> size=n ptr=<pointer to array of items>
- >16 -> size=0xff ptr=<pointer to map[T]struct{}>
Should reduce memory usage significantly.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs-pr-required Change is not yet documented release-note-required Change has user-facing impact (no matter how small)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants