标签:json health index host cat 成功 sea curl dice
1、资源准备
1、数据文件:accounts.json 2、索引名称:bank 3、数据类型:account 4、批量操作API:bulk
2、导入数据
curl -XPOST ‘localhost:9200/bank/account/_bulk?pretty‘ --data-binary @accounts.json
3、确认是否导入成功,查看索引,并响应
curl ‘localhost:9200/_cat/indices?v‘ health index pri rep docs.count docs.deleted store.size pri.store.size yellow bank 5 1 1000 0 424.4kb 424.4kb
出现如上响应,即说明导入成功。
标签:json health index host cat 成功 sea curl dice
原文地址:http://www.cnblogs.com/hcy-fly/p/7986083.html