标签:数据 随机 创建索引 添加 pos arc log ast elastic
前提,
注意事项
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