elasticsearch摸石头过河——数据导入
Posted 10fly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elasticsearch摸石头过河——数据导入相关的知识,希望对你有一定的参考价值。
elasticsearch 提供了restful API 与 java API 两种方式来进行通讯
我们先以批量数据导入 入手:
bulk导入 命令:
curl -H "Content-Type: application/json" -XPOST ‘192.168.x.xxx:9200/_index/_type/_bulk?pretty&refresh‘ --data-binary @"all.json" all.json 就是当前文件 json格式
索引删除
curl -XDELETE http://192.168.x.xxx:9200/xx(索引名称)
以上是关于elasticsearch摸石头过河——数据导入的主要内容,如果未能解决你的问题,请参考以下文章
第十三届蓝桥杯省赛 C++ A 组 F 题Java A 组 G题C组 H 题Python C 组 I 题——青蛙过河(AC)