You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
PPL does not allow to run partial search, something like an equivalent of query-string or match query.
Consider I have a document with as "title":"learning opensearch is fun"
Now if I want to get all the document where "fun" is present, as of now there is no way to run this kind of filter. And I need to run search source=my_index | where title="learning opensearch is fun"
Describe the solution you'd like
I would like the PPL to run query something like: search source=my_index | where title="fun" or search source=my_index | where title="*fun*"
And above query would get me if it matches the document with partial data on title.
Describe alternatives you've considered
Instead of using PPL, I am using regular GET API with query_string/match query
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
PPL does not allow to run partial search, something like an equivalent of query-string or match query.
Consider I have a document with as "title":"learning opensearch is fun"
Now if I want to get all the document where "fun" is present, as of now there is no way to run this kind of filter. And I need to run
search source=my_index | where title="learning opensearch is fun"
Describe the solution you'd like
I would like the PPL to run query something like:
search source=my_index | where title="fun"
orsearch source=my_index | where title="*fun*"
And above query would get me if it matches the document with partial data on title.
Describe alternatives you've considered
Instead of using PPL, I am using regular GET API with query_string/match query
The text was updated successfully, but these errors were encountered: