12、ES实战:使用mget进行批量查询

跟我学Elasticsearch(12) 使用mget进行批量查询

目录

  • 1、为什么要批量查询

  • 2、mget的语法

  • (1) 同一index同一type

  • (2) 同一index不同type

  • (3) 不同idex

1、为什么要批量查询

假如我们要查100个document,一个一个id查的话,需要发送100次网络请求,占用网络开销,用mget进行批量查询的话,只要发送1次网络请求,网络开销减小100倍。

2、mget的语法

(1) 同一index同一type

GET /test_index/test_type/_mget
{
   "ids": [1, 2]
}

(2) 同一index不同type

GET /test_index/_mget
{
   "docs" : [
      {
         "_type" :  "test_type",
         "_id" :    1
      },
      {
         "_type" :  "test_type2",
         "_id" :    2
      }
   ]
}

(3) 不同idex

GET /_mget
{
   "docs" : [
      {
         "_index" : "test_index",
         "_type" :  "test_type",
         "_id" :    1
      },
      {
         "_index" : "test_index2",
         "_type" :  "test_type2",
         "_id" :    2
      }
   ]
}

posted @ 2020-08-03 10:36 百里喻初原 阅读( 513) 评论( 0) 编辑 收藏 举报

版权声明:本文不是「本站」原创文章,版权归原作者所有 | 原文地址: