保持清醒,不断思考。

Mike lucis


  • 首页
  • 归档
  • 分类
  • 标签
  • 关于
  • 联系
  •     

© 2023 Mike lucis

Theme Typography by Makito

Proudly published with Hexo

备案号: 湘ICP备2021005917号-1

友情链接: Lonely's Bolg

ღゝ◡╹)ノ♡

ElasticSearch-批量操作

发布于 2021-07-06 BigData  ElasticSearch 

¶ ElasticSearch 批量操作

环境版本:
ElasticSearch 7.11.1

¶ 请求体

action(行为) 说明
create 当文档不存在时创建之
index 创建新文档或替换已有文档
update 局部更新文档
delete 删除一个文档
1
2
3
4
5
6
7
8
# 请求体格式
{action: {metadata}}
{request body}
{action: {metadata}}
{request body}

# 例子
{"DELETE": {"_index": "library","_type": "books","_id": "1"}}

注意: 其请求头为:
Content-Type: application/x-ndjson


¶ 批量插入数据

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
POST {{url}}/music/_bulk
{{head_bulk}}

{"create":{"_index":"music", "_id": "1"}}
{"title": "Ave Verum Corpus"}
{"create":{"_index":"music", "_id": "2"}}
{"title": "Ave Verum Corpus2"}
{"create":{"_index":"music", "_id": "3"}}
{"title": "Ave Verum Corpus3"}
{"create":{"_index":"music", "_id": "4"}}
{"title": "Ave Verum Corpus4"}
{"create":{"_index":"music", "_id": "5"}}
{"title": "Ave Verum Corpus5"}
{"create":{"_index":"music", "_id": "6"}}
{"title": "Ave Verum Corpus6"}
{"create":{"_index":"music", "_id": "7"}}
{"title": "Ave Verum Corpus7"}
{"create":{"_index":"music", "_id": "8"}}
{"title": "Ave Verum Corpus8"}

¶ 增删改

1
2
3
4
5
6
7
8
POST {{url}}/music/_bulk
{{head_bulk}}

{"update":{"_index":"music", "_id": "1"}}
{"doc": {"title": "update Ave Verum Corpus"}}
{"create":{"_index":"music", "_id": "9"}}
{"title": "Ave Verum Corpus9"}
{"delete":{"_index":"music", "_id": "3"}}

¶ 相关操作

1
2
3
4
5
6
7
# 在全局范围内的所有索引中批量查询
GET {{url}}/music/_mget
{{HEAD}}

{
"ids": ["2", "3", "4"]
}

分享到 

 上一篇: ElasticSearch-匹配查询 下一篇: ElasticSearch-索引映射 

© 2023 Mike lucis

Theme Typography by Makito

Proudly published with Hexo

备案号: 湘ICP备2021005917号-1

友情链接: Lonely's Bolg

ღゝ◡╹)ノ♡