码迷,mamicode.com
首页 > 其他好文 > 详细

elastic 基本操作

时间:2019-09-10 17:40:19      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:pil   div   local   log   curl   type   guid   bsp   guide   

官方参考文档:

https://www.elastic.co/guide/cn/elasticsearch/guide/current/index-doc.html

 

1、查看 有哪些索引:

 

 curl localhost:9200/_cat/indices?v

 

2、添加索引:

 

 curl -XPUT localhost:9200/customer?pretty
 curl localhost:9200/_cat/indices?v

3、删除索引

  

 curl -XDELETE localhost:9200/customer?pretty
 curl localhost:9200/_cat/indices?v

4、更新数据

 

   

curl -XPOST ‘localhost:9200/_index/_type/_id/_update?pretty‘ -d ‘
curl -XPOST localhost:9200/customer/external/1/_update?pretty -d {
  "doc": { "name": "Jane Doe", "age": 20 }
}

查看原来的数据

curl -XPOST ‘localhost:9200/customer/external/_bulk?pretty‘ -d ‘

  {"index":{"_id":"1"}}

  {"name": "John Doe" }

  {"index":{"_id":"2"}}

  {"name": "Jane Doe" }

  ‘

 批量处理:

 下面语句批处理执行更新id为1的数据然后执行删除id为2的数据


  curl -XPOST ‘localhost:9200/customer/external/_bulk?pretty‘ -d ‘

  {"update":{"_id":"1"}}

  {"doc": { "name": "John Doe becomes Jane Doe" } }

  {"delete":{"_id":"2"}}

  ‘
参考链接:https://www.cnblogs.com/pilihaotian/p/5830754.html

 

elastic 基本操作

标签:pil   div   local   log   curl   type   guid   bsp   guide   

原文地址:https://www.cnblogs.com/cbugs/p/11498626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!