Elasticsearch 刪除索引

2021-09-26 07:56:01 字數 748 閱讀 2424

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"

響應:

health status index uuid pri rep docs.count docs.deleted store.size pri.store.size
可以看到,索引被成功刪除,現在回到了集群中什麼都沒有的狀態。

在繼續之前,讓我們再仔細看看,目前學過的一些api命令:

api:

put /customer

put /customer/_doc/1

get /customer/_doc/1

delete /customer

如果仔細研究上面的命令,可以看出elasticsearch中訪問資料的模式。這種模式可以概括如下:

 ///
這種rest訪問模式在api命令中是很常見的。

ElasticSearch日誌刪除

檢視elasticsearch中的索引 curl http ip 9200 cat indices u使用者 密碼 通過curl傳送delete命令給elasticsearch伺服器,進行日誌刪除操作。示例 1 通過日期刪除2020年六月的日誌 curl xdelete http ip 9200 2...

elasticsearch定時刪除索引

刪除索引的命令 curl xdelete curl xdelete es定時刪除索引步驟 vi usr sxy es index clear.sh 內容如下 刪除三天前的索引 建索引時格式為es yyyy.mm.dd 例如index es last data date d 3 days y.m.d ...

Elasticsearch之刪除索引

1 刪除指定索引 2 刪除多個指定索引,中間用逗號隔開 3 模糊匹配刪除 4 使用萬用字元,刪除所有的索引 或 curl xdelete http localhost 9200 all 通配所有的索引 通常不建議使用萬用字元,誤刪了後果就很嚴重了,所有的index都被刪除了 禁止萬用字元為了安全起見...