Elasticsearch 删除索引 - 奇客谷

Elasticsearch 教程

相关推荐

Elasticsearch 删除索引


现在让我们删除刚才创建的索引,然后再列出所有索引:

API:

DELETE /customer?pretty
GET /_cat/indices?v

复制

curl命令访问API:

curl -X DELETE "localhost:9200/customer?pretty"
curl -X GET "localhost:9200/_cat/indices?v"

复制

Elasticsearch 删除索引


现在让我们删除刚才创建的索引,然后再列出所有索引:

API:

DELETE /customer?pretty
GET /_cat/indices?v

复制

curl命令访问API:

curl -X DELETE "localhost:9200/customer?pretty"
curl -X GET "localhost:9200/_cat/indices?v"

复制

响应:

health status index uuid pri rep docs.count docs.deleted store.size pri.store.size

复制

可以看到,索引被成功删除,现在回到了集群中什么都没有的状态。

在继续之前,让我们再仔细看看,目前学过的一些API命令:

API:

PUT /customer
PUT /customer/_doc/1
{
  "name": "John Doe"
}
GET /customer/_doc/1
DELETE /customer

复制

如果仔细研究上面的命令,可以看出Elasticsearch中访问数据的模式。这种模式可以概括如下:

<HTTP Verb> /<Index>/<Endpoint>/<ID>

复制

这种REST访问模式在API命令中是很常见的。


Doc navigation

← Elasticsearch 创建和查询文档

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值