Utilizing the Elasticsearch multi index API, I am able to query across multiple indices. However, it is important for me to prioritize my queries.
As an illustration, when querying in the indices index1
and index2
, the syntax would look like:
/index1,index2/_searchq=yourQueryHere
My requirement is to have the query executed first on index2
before moving on to index1
.