Use BTreeMap for Milhouse pending updates (v7.0.0)#7043
Closed
michaelsproul wants to merge 1 commit intosigp:release-v7.0.0from
Closed
Use BTreeMap for Milhouse pending updates (v7.0.0)#7043michaelsproul wants to merge 1 commit intosigp:release-v7.0.0from
michaelsproul wants to merge 1 commit intosigp:release-v7.0.0from
Conversation
Member
Author
|
This did not work. Removing from beta.2 for now. |
Member
I also experimented with this idea, unaware that this PR exists. Not sure what happened in your case, but in my case, it slowed things down quite a bit - but switching Edit: actually not sure if it fully fixed my issues |
michaelsproul
added a commit
to michaelsproul/lighthouse
that referenced
this pull request
Feb 26, 2025
Squashed commit of the following: commit 8fb75ff Author: Michael Sproul <michael@sigmaprime.io> Date: Wed Feb 26 16:46:40 2025 +1100 Use BTreeMap for Milhouse pending updates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Proposed Changes
Optimisation to remove
VecMapusage, as with millions of validators it is becoming a significant contributor to peak memory usage.CPU Benchmarks
CPU benchmarks show that
BTreeMapis faster for recent slots. Originally when we introducedmilhousetheBTreeMapwas slower thanVecMap. I suspect the memory allocation time is now dominating the memory access time, which wasVecMap's main advantage.Benchmark command:
on
unstable(as of 06329ec):on this branch using
BTreeMapforvalidatorsandbalances:Memory Metrics
Pending. Initial tests on Holesky while syncing during non-finality show that the VecMap uses substantial memory (20GB+).
Additional Info
Ideally merge after: