码迷,mamicode.com
首页 > Web开发 > 详细

Elasticsearch之curl创建索引库和索引时注意事项

时间:2017-02-20 19:03:27      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:数据   随机   创建索引   添加   pos   arc   log   ast   elastic   

 

前提,

Elasticsearch之curl创建索引库

Elasticsearch之curl创建索引

 

  

 

注意事项

1、索引库名称必须要全部小写,不能以下划线开头,也不能包含逗号

2、如果没有明确指定索引数据的ID,那么es会自动生成一个随机的ID,需要使用POST参数

  curl -XPOST http://192.168.80.200:9200/zhouls/emp/ -d ‘{"name" : "tom"}‘

3、如果想要确定我们创建的都是全新的数据

  1:使用随机ID(post方式)

  2:在url后面添加参数

  curl -XPUT http://192.168.80.200:9200/zhouls/emp/2/_create -d ‘{"name":"tom","age":25}‘

Elasticsearch之curl创建索引库和索引时注意事项

标签:数据   随机   创建索引   添加   pos   arc   log   ast   elastic   

原文地址:http://www.cnblogs.com/zlslch/p/6420703.html

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