具有多个索引的弹性搜索大小选项

时间:2019-06-11 11:26:07

标签: elasticsearch

我正在尝试从两个弹性搜索索引中获取数据。我通过以下查询得到它。

但是,我希望每个索引有20个数据集作为结果

对此有任何规定吗?

以下是我的查询:

  curl -X POST \
  'http://localhost:9200/index1,index2/_search' \
  -H 'Content-Type: application/json' \
  -H 'cache-control: no-cache' \
  -d '{
   "query": {},
   "from": 0,
   "size": 20
  }'

1 个答案:

答案 0 :(得分:2)

是的,可以肯定。有一个多重搜索功能,使您可以一次发送两个(或多个)搜索请求(每个索引一个,每个10个结果)。响应将以完全相同的顺序包含所有查询的结果/结果。

请查看https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html,以获取更多详细信息。