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.
Users need the ability to query multiple indices with different names.
Describe the solution you'd like
Support for comma-separated index matching
Describe alternatives you've considered
We currently have the ability to use the wildcard pattern but this limits users to only include indices with similar naming schemas.
Additional context
Currently this works,
PUT /name/_doc/1
{
"field": "123"
}
PUT /name_different/_doc/1
{
"different_field": "abc"
}
POST /_plugins/_ppl
{
"query" : """
source = name* | fields different_field
"""
}
Is your feature request related to a problem? Please describe.
Users need the ability to query multiple indices with different names.
Describe the solution you'd like
Support for comma-separated index matching
Describe alternatives you've considered
We currently have the ability to use the wildcard pattern but this limits users to only include indices with similar naming schemas.
Additional context
Currently this works,
which gives,
But this does not,
which gives,
The text was updated successfully, but these errors were encountered: