1. 程式人生 > >ElasticSearch入門常用命令

ElasticSearch入門常用命令

開源 基於 nod pan ear arc http localhost count

基於開源項目MyAlice智能客服學習ElasticSearch

https://github.com/hpgary/MyAlice/wiki/%E7%AC%AC01%E7%AB%A0%E5%AE%89%E8%A3%85

首先和常用的關系型數據庫做一個對比,明確一下概念:

EslaicSearch MySQL
索引 數據庫
type
document
filed

1、查看集群

http://localhost:19200/

2、查看文檔數量

http://localhost:19200/_count?pretty

3、查看健康狀態

http://localhost:19200/_cat/health?v

4、查看節點信息

http://localhost:19200/_cat/nodes?v

5、查看索引

http://localhost:19200/_cat/indices?v

6、查看索引下的類型

http://localhost:19200/myalice

對應的mappings字段裏面的字段名稱就是類型(相當於數據庫中的表)

7、列出某索引 類型 下的文檔

http://localhost:19200/myalice/question/_search

question是類型

8、在類型中根據title搜索

http://localhost:19200/myalice/question/_search?q=title:%E5%90%83

其中title是文檔字段

ElasticSearch入門常用命令