Elasticsearch存储数据之前需要先创建索引,类似于结构型数据库建库建表,创建索引时定义了每个字段的索引方式和数据类型。 常用API: 1、查看指定索引信息: GET http://$user:$passwd@$host:$port/$index 2:创建索引: PUT http://$user:$passwd@$host:$port/$index { settings: { index: { number_of_shards: 1, //索引的主分片个数,默认值是5,这个配置在索引创建后不能修改