-
Notifications
You must be signed in to change notification settings - Fork 25.1k
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 wildcard and prefix intervals #43198
Labels
:Search/Search
Search-related issues that do not fall into other categories
Comments
Pinging @elastic/es-search |
romseygeek
added a commit
that referenced
this issue
Jun 26, 2019
This commit adds a prefix intervals source, allowing you to search for intervals that contain terms starting with a given prefix. The source can make use of the index_prefixes mapping option. Relates to #43198
romseygeek
added a commit
that referenced
this issue
Jun 26, 2019
This commit adds a prefix intervals source, allowing you to search for intervals that contain terms starting with a given prefix. The source can make use of the index_prefixes mapping option. Relates to #43198
Merged
romseygeek
added a commit
that referenced
this issue
Jun 28, 2019
This commit adds a wildcard intervals source, similar to the prefix. It also changes the term parameter in prefix to read prefix, to bring it in to line with the pattern parameter in wildcard. Closes #43198
romseygeek
added a commit
that referenced
this issue
Jun 28, 2019
This commit adds a wildcard intervals source, similar to the prefix. It also changes the term parameter in prefix to read prefix, to bring it in to line with the pattern parameter in wildcard. Closes #43198
16 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We should expose the
wildcard
andprefix
IntervalSource implementationsas providers in elasticsearch.
Span queries also allow you to wrap regexp and term range queries, and we can
consider adding these here as well, although they will also require some work in
lucene.
The
prefix
source can piggy-back on text fieldsindex_prefixes
functionality torewrite to simple term intervals sources
The text was updated successfully, but these errors were encountered: