首页 > 代码库 > Elasticsearch之curl创建索引库和索引时注意事项

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

 

前提,

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创建索引库和索引时注意事项