This repository was archived by the owner on Aug 23, 2023. It is now read-only.
ConsolidateNudge: nudge without reducing capacity of underlying slice, to keep pointslicepool effective #1923
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Note: this builds on top of #1922, review/merge that first.
Without this fix, you would commonly see that slices going into the pointslicepool would have a cap that is one or two points less then what you need on subsequent reads.
E.g. I added some debug lines and saw this:
This fix increases efficacy of the pool.
Here we can see the comparison of two query nodes q0 and q1.
q0 runs master+stats (#1922)
q1 runs the code from this branch.
We can see that as time advances, there are periods where nudging happens, which breaks down the efficacy of the pointslicepool in q0.
Q1 doesn't have this problem. We see an increased hit rate, sadly it doesn't translate into memory savings
q1:
q0: