-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
runtime: opportunistically rotate map key seed #25237
Comments
Just curious: why not do the same when map growing is initiated? Is there something preventing the new/bigger map storage to use a different seed? |
The way we grow the map, it isn't possible. Each original bucket evacuates to just two new buckets. The hashes need to agree on all the common bits. |
Punting to unplanned. Pretty low priority. |
Change https://golang.org/cl/253020 mentions this issue: |
While https://golang.org/cl/253020 resets the seed when the map clear idiom is used it doesnt reset the seed when maps are emptied to zero elements by just deleting elements without ranging over all the keys or when the pattern for map clear is not triggered. I think this is done in map clear we should also do it on deleting if an element is deleted and the maps length drops to 0. |
Change https://golang.org/cl/252940 mentions this issue: |
As further protection, when the size of a non-tiny map drops to zero, we should update its hash seed. This is a reminder issue.
See discussion in CL 110055.
cc @martisch @randall77
The text was updated successfully, but these errors were encountered: