ElasticSearch9:索引操作

ElasticSearch9:索引操作

查询索引

# 查看索引,没有数据 GET /_cat/indices?v # 创建索引 PUT /products

创建索引

创建orders索引,进行内容设置。
# 创建索引 PUT /products # 指定创建索引 PUT /orders { "settings":{ "number_of_shards":1, "number_of_replicas":0 } }
notion image
我们创建单节点数据,所以健康显示黄色,代表警告。ES默认创建索引会进行一个备份,单节点模式主数据块和备份数据库在一台机器上。
notion image
执行查看
notion image

删除索引

DELETE /products