可以在搜索调用中指定多少个索引?

时间:2016-03-03 01:17:10

标签: elasticsearch

如Elasticsearch documentation中所指定的,elasticsearch需要在GET调用的URL中指定的索引。由于GET调用中URL的限制,这限制了可以查询的索引数。

有没有办法克服这个问题?

1 个答案:

答案 0 :(得分:1)

您可以在请求正文中指定索引:

{
    "indices" : {
        "indices" : ["index1", "index2"],
        "query" : {
            "term" : { "tag" : "wow" }
        },
        "no_match_query" : "none"
    }
}

请参阅Indices Query