Introduce SwissTable-based hashing (LongSwissHash, BytesRefSwissHash) for ES|QL STATS#139343
Merged
ChrisHegarty merged 133 commits intoelastic:mainfrom Jan 6, 2026
Merged
Introduce SwissTable-based hashing (LongSwissHash, BytesRefSwissHash) for ES|QL STATS#139343ChrisHegarty merged 133 commits intoelastic:mainfrom
ChrisHegarty merged 133 commits intoelastic:mainfrom
Conversation
Contributor
Author
|
Buildkite benchmark this with clickbench please |
Contributor
Author
|
Buildkite benchmark this with clickbench please |
Contributor
Author
|
Buildkite benchmark this with esql please |
Collaborator
💚 Build Succeeded
This build ran two esql benchmarks to evaluate performance impact of this PR. History |
This was referenced Jan 13, 2026
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.
This PR introduces two new hash-table implementations - LongSwissHash and BytesRefSwissHash - as the first step in improving the performance and memory behavior of the ES|QL STATS operator. These structures are based on SwissTable-style open addressing with SIMD-friendly control bytes, offering significantly better probe behavior and cache locality than the current hash implementation.
A larger multi-step plan and follow-up work are tracked in the corresponding meta issue. #138799
What this PR includes
These structures form the foundation for replacing the STATS operator’s existing hash table with something faster, more predictable, and more memory-efficient under high cardinality. The implementation follows the same principles as SwissTable/Abseil, adapted for Elasticsearch’s memory model.
Contributors: @ChrisHegarty @nik9000 @MattAlp