Now I have many data and indices, and search is slower, but most data can be searched in a year's indices(I split data by month), so I want to search latest 1 year first, if not get result, try to search all.
I can do this by two request, but I want to know if there's a way to do this once, for example, can I point exact indices first and append * at last, like this: http://ip:port/index1,index2,index3,index*/_search
if limit 1, will this find by sequence and when it find stop other search?