Elasticsearch 使用集群 刪除索引

2022-09-05 02:15:12 字數 747 閱讀 6662

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

github github使用elasticsearch搜尋20tb的資料,包括13億的檔案和1300億行的 這個不用介紹了吧,碼農們都懂的,github在2013年1月公升級了他們的 搜尋,由solr轉為elasticsearch,目前集群規模為26個索引儲存節點和8個客戶端節點 負責處理搜尋請求...

ElasticSearch使用入門

es的安裝 啟動 cd.elasticsearch 2 4 3 bin elasticsearch bin elasticsearch d 後台執行 es安裝驗證 注意 預設啟動的時候es繫結的網路ip是本機127.0.0.1,只能通過這個ip訪問 兩種修改方式 1 修改config elastic...

ElasticSearch使用學習

elasticsearch是乙個基於lucene的搜尋服務,它通過倒排索引的方法提供了全文搜尋的能力。1 插入資料 elasticsearch中存放資料的為文件,有索引及型別名,如下插入兩文件 2 檢索文件 1 檢索id為1的文件 curl x get elasticsearch.in.netwa....