Elasticsearch常用基礎操作

2022-08-28 23:36:22 字數 935 閱讀 1059

1、獲得集群中的節點列表:

curl '

localhost:9200/_cat/nodes?v

'

2、獲得所有索引:

curl '

localhost:9200/_cat/indices?v

'

3、建立指定文件,並索引到指定索引和型別

#                  索引  型別

1 curl -xput '

localhost:9200/customer/external/1?pretty

' -d '

2'

4、取出指定文件

curl -xget '

localhost:9200/customer/external/1?pretty

'

5、刪除指定文件

curl -xdelete '

localhost:9200/customer/external/2?pretty

'

6、刪除指定索引

curl -xdelete '

localhost:9200/customer?pretty

'

7、修改指定文件——直接使用新增的方式「-d」指定覆蓋

1 curl -xput '

localhost:9200/customer/external/1?pretty

' -d '

2'

8、更新文件

1 curl -xpost '

localhost:9200/customer/external/1/_update?pretty

' -d '

24 }'

elasticsearch常用操作

es模板postman常用操作 類別方法 url描述 查詢模板get http ip 9200 template template 查詢模板中template開頭的所有模板 為萬用字元 查詢特定的模板get http ip 9200 template vias business查詢名為vias bu...

elastic search常用操作

常用操作 查詢所有索引及狀態 get cat indices?v 查詢productsearchuat索引,預設返回一條資料 get productsearchuat search 知道product id 查es索引 get productsearchuat search 通過企業名稱查詢企業 g...

elasticsearch常用curl鏈結

1 測試es是否啟動成功 pretty引數是為了讓查詢結果更方便閱讀 3 建立megacorp索引 employee型別 id為1的資料 索引名必須小寫,不能以下劃線開頭,不能包含逗號。型別命名可以是大寫或者小寫,但是不能以下劃線或者句號開頭,不應該包含逗號,並且長度限制為256個字元。如果該id的...