PART Ⅰ : 容器云OPENSHIFT
- 安装
- 数据持久化
- 集群管理
- 数据持久化
- 管理
- 网络
- 安全审计
- 工具应用部署
PART Ⅱ:容器云 KUBERNETES
- 基础
- 原理
- 系统应用/网络CNI/TRaefik
- 安装
- 集群管理
- 用户认证ServiceAccount与授权策略RBAC
- K8S应用管理工具Helm
- 问题
- 辅助工具
- Doing:K8S 多集群管理与网络互联
- VM On K8S
PART Ⅲ:持续集成与持续部署
- CICD优化总结
- Jenkins
- Gitlab
- Drone
- Nexus
- 配置
- 使用OrientDB Console在DB层面修改配置
- [设置SMTP邮件服务](https://www.wenjiangs.com/doc/krrcu7ebin9hh
- 仓库管理
- 数据备份恢复
- API
- Jenkins相关插件
- 配置
- SonarQube静态代码扫描分析
- LDAP
- Apollo
- 项目管理工具
- Jira
- Redmine
- Harbor
- Vault
- Alfred
- Web IDE: VSCode
- DolphinScheduler
PART Ⅴ:日志/监控/告警
- Logging
- Kafka/Zookeeper
- Filebeat
- Metrics
- Tracing
- Sentry日志聚合告警平台
PART Ⅵ:基础
- Docker
- Shell脚本
- Mave
- git
- 正则表达式
- SSL/TLS
- Ceph
- 性能压力测试
- PXE+Kickstart
- netboot.xyz
- Tool
- Windows
- MacOS小技巧
- Linux
- Linux排错优化
- iptables详解
- MySQL
- Redis
- 负载均衡与代理
- 代理服务器
- Nginx
- GitBook
- Telegram机器人
- OpenVPN Server
- iDRAC
- vSphere
- Raspberry Pi树莓派
- 钉钉机器人
- Aliyun CLI
- 音、视频处理工具:fffmpeg
- 图片处理工具:Imagemagick
- PDF处理工具:Ghostscript
- Nvidia
- Virtualbox 虚拟机管理
- 阿里云产品使用总结
- RustDesk:可自建远程控制软件
- Poste:自建邮件服务器
- 使用 Jlink构建最小化依赖的 JRE 环境
- Aria2
- Asuswrt-Merlin
- Trap:Shell脚本信号跟踪
- 零散知识汇总
- BarkServer通知
- Synology
PART Ⅶ:数据存储、处理
PART VIII:CODE
- Python学习笔记
- 基础语法
- statik 将静态资源文件打包到二进制文件中
- HTML/CSS 学习笔记
- JavaScript学习笔记
PART X:HACKINTOSH
PART XI:安全
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
bulk
1. API请求URL格式
POST /_bulk
{ "index动作": { "_index" : "索引名", "_id" : "文档ID" } }{ "字段名" : "字段值" }
{ "delete动作": { "_index" : "索引名", "_id" : "文档ID" } }
{ "create动作": { "_index" : "索引名", "_id" : "文档ID" } }{ "字段名" : "字段值" }
{ "update动作": { "_index" : "索引名", "_id" : "文档ID" } }{ "doc" : { "字段名" : "字段值" } }
POST /索引名/_bulk
{"index":{"_id":"文档ID"}}{ "字段名": "字段值" }
{"index":{"_id":"文档ID"}}{ "字段名": "字段值" }
2. 支持的文档操作动作
index
如果索引中已经存在具有相同名称的文档,则创建失败,索引将根据需要添加或替换文档
create
如果索引中已经存在具有相同名称的文档,则创建失败,索引将根据需要添加或替换文档
delete
不期望下一行有文档数据。具有与标准delete API相同的语义
update
期望在下一行中指定部分文档、upsert和脚本及其选项
3. 将文档操作数据存储在文本
文本格式
动作及元数据\n
数据\n
动作及元数据\n
数据\n
....
动作及元数据\n
数据\n
例如操作数据文本test.json数据如下:
{"index": {"_index": "test", "_type": "_doc", "_id": 1}}
{"doc": {"name": "test1"}}
{"index": {"_index": "test", "_type": "_doc", "_id": 2}}
{"doc": {"name": "test2"}}
========================================================================
{"index":{"_id":"1"}}
{ "name": "test1" }
{"index":{"_id":"2"}}
{ "name": "test2" }
{"index":{"_id":"3"}}
{ "name": "test3" }
操作API的Curl命令
curl -X POST "localhost:9200/_bulk" -H 'Content-Type: application/json' --data-binary @test.json
========================================================================
curl -X POST "localhost:9200/test/_bulk" -H 'Content-Type: application/json' --data-binary @test.json
4. 注意事项
- 批量操作的响应可能是很大的JSON数据,其中包含执行的每个操作的结果,显示的顺序与请求中出现的操作顺序相同。单个操作的失败不会影响其余操作。
- 批量操作的响应中没有标识
操作成功
的计数字段
doc
(partial document)upsert
doc_as_upsert
script
params
(for script)lang
(for script)_source
POST _bulk
{ "update" : {"_id" : "1", "_index" : "index1", "retry_on_conflict" : 3} }
{ "doc" : {"field" : "value"} }
{ "update" : { "_id" : "0", "_index" : "index1", "retry_on_conflict" : 3} }
{ "script" : { "source": "ctx._source.counter += params.param1", "lang" : "painless", "params" : {"param1" : 1}}, "upsert" : {"counter" : 1}}
{ "update" : {"_id" : "2", "_index" : "index1", "retry_on_conflict" : 3} }
{ "doc" : {"field" : "value"}, "doc_as_upsert" : true }
{ "update" : {"_id" : "3", "_index" : "index1", "_source" : true} }
{ "doc" : {"field" : "value"} }
{ "update" : {"_id" : "4", "_index" : "index1"} }
{ "doc" : {"field" : "value"}, "_source": true}
1. 向指定索引批量插入文档
Kibana Dev Tools Console
POST _bulk { "index" : { "_index" : "test", "_id" : "1" } }{ "name" : "test1" } { "index" : { "_index" : "test", "_id" : "2" } }{ "name" : "test2" } { "index" : { "_index" : "test", "_id" : "3" } }{ "name" : "test3" } ======================================================================== POST /test/_bulk {"index":{"_id":"1"}}{ "name": "test1" } {"index":{"_id":"2"}}{ "name": "test2" } {"index":{"_id":"3"}}{ "name": "test3" }
Curl命令
curl -XPOST "http://localhost:9200/_bulk" \ -H 'Content-Type: application/json' \ -d ' { "index" : { "_index" : "test", "_id" : "1" } }{ "name" : "test1" } { "index" : { "_index" : "test", "_id" : "2" } }{ "name" : "test2" } { "index" : { "_index" : "test", "_id" : "3" } }{ "name" : "test3" } ' ======================================================================== curl -XPOST "http://localhost:9200/test/_bulk" \ -H 'Content-Type: application/json' \ -d ' {"index":{"_id":"1"}}{ "name": "test1" } {"index":{"_id":"2"}}{ "name": "test2" } {"index":{"_id":"3"}}{ "name": "test3" } '
2. 针对索引文档进行批量操作
Kibana Dev Tools Console
POST _bulk { "index" : { "_index" : "test", "_id" : "1" } }{ "field1" : "value1" } { "delete" : { "_index" : "test", "_id" : "2" } } { "create" : { "_index" : "test", "_id" : "3" } }{ "field1" : "value3" } { "update" : { "_index" : "test", "_id" : "1" } }{ "doc" : { "field2" : "value2"} }
Curl命令
curl -X POST "localhost:9200/_bulk?pretty" \ -H 'Content-Type: application/json' \ -d ' { "index" : { "_index" : "test", "_id" : "1" } } { "field1" : "value1" } { "delete" : { "_index" : "test", "_id" : "2" } } { "create" : { "_index" : "test", "_id" : "3" } } { "field1" : "value3" } { "update" : { "_index" : "test", "_id" : "1" } } { "doc" : {"field2" : "value2"} } '
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论