如Elasticsearch documentation中所指定的,elasticsearch需要在GET调用的URL中指定的索引。由于GET调用中URL的限制,这限制了可以查询的索引数。
有没有办法克服这个问题?
答案 0 :(得分:1)
您可以在请求正文中指定索引:
{
"indices" : {
"indices" : ["index1", "index2"],
"query" : {
"term" : { "tag" : "wow" }
},
"no_match_query" : "none"
}
}
请参阅Indices Query。