-
Notifications
You must be signed in to change notification settings - Fork 24.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
Add fuzzy intervals source #49762
Add fuzzy intervals source #49762
Conversation
Pinging @elastic/es-search (:Search/Search) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new source looks good to me, should it be in Lucene too ? I also wonder if we should allow for more than 128 expansions ? Allowing up to max boolean clause should be enough in Lucene 9 because the limit is applied on the entire query.
You can already build something like this directly using
I'll open a follow-up to move everything to use |
@elasticmachine update branch |
This intervals source will return terms that are similar to an input term, up to an edit distance defined by fuzziness, similar to FuzzyQuery. Closes #49595
This intervals source will return terms that are similar to an input term, up to an edit distance defined by fuzziness, similar to FuzzyQuery. Closes elastic#49595
This intervals source will return terms that are similar to an input term, up to
an edit distance defined by
fuzziness
, similar to FuzzyQuery.Closes #49595