创建映射
映射一般与索引一起结合使用。
字符串类型:keyword
数字类型:interger long
小数类型:float
布尔类型:boolean
日期类型:date
# 创建索引 PUT /products { "settings":{ "number_of_shards":1, "number_of_replicas":0 }, "mappings":{ "properties": { "id":{ "type":"integer" }, "title":{ "type":"keyword" }, "create_at":{ "type":"date" }, "description":{ "type":"text" } } } } # 查看索引映射信息 GET /products/_mapping
映射是不能修改和删除的,如果映射出现问题,只能删除索引重新创建。