Skip to content

Conversation

nik9000
Copy link
Member

@nik9000 nik9000 commented Apr 24, 2025

Backports the following commits to 9.0:

I found that `rare_terms` aggregation can return **false positive** results (some of the returned results are not real). I traced it down and find out it's a bug in `CuckooFilter`'s merge methord. ``` if (isSetMode == false && other.isSetMode) { other.hashes.forEach(this::add); } ``` should be ``` if (isSetMode == false && other.isSetMode) { other.hashes.forEach(this::addHash); } ```
@nik9000 nik9000 added :Analytics/Aggregations Aggregations >bug auto-merge-without-approval Automatically merge pull request when CI checks pass (NB doesn't wait for reviews!) backport external-contributor Pull request authored by a developer outside the Elasticsearch team Team:Analytics Meta label for analytical engine team (ESQL/Aggs/Geo) labels Apr 24, 2025
@elasticsearchmachine elasticsearchmachine merged commit bf6c886 into elastic:9.0 Apr 24, 2025
16 checks passed
@nik9000 nik9000 deleted the backport/9.0/pr-126884 branch April 24, 2025 22:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

:Analytics/Aggregations Aggregations auto-merge-without-approval Automatically merge pull request when CI checks pass (NB doesn't wait for reviews!) backport >bug external-contributor Pull request authored by a developer outside the Elasticsearch team Team:Analytics Meta label for analytical engine team (ESQL/Aggs/Geo) v9.0.1

3 participants