標籤:ransient value har ati discover href pen minimum pool
使用Elasticsearch不免要提到curl工具,curl是利用URL文法在命令列方式下工作的開源檔案傳輸工具。官網地址:https://curl.haxx.se/
因為elasticsearch提供了標準的http介面,所以我們可以使用curl方便的訪問elasticsearch。
下面收集了一些使用curl命令操作elasticsearch。
第一:_cat系列
_cat系列提供了一系列查詢elasticsearch叢集狀態的介面。你可以通過執行
curl -XGET localhost:9200/_cat 擷取所有_cat系列的操作
$ curl -XGET localhost:9200/_cat=^.^=/_cat/allocation/_cat/shards/_cat/shards/{index}/_cat/master/_cat/nodes/_cat/tasks/_cat/indices/_cat/indices/{index}/_cat/segments/_cat/segments/{index}/_cat/count/_cat/count/{index}/_cat/recovery/_cat/recovery/{index}/_cat/health/_cat/pending_tasks/_cat/aliases/_cat/aliases/{alias}/_cat/thread_pool/_cat/thread_pool/{thread_pools}/_cat/plugins/_cat/fielddata/_cat/fielddata/{fields}/_cat/nodeattrs/_cat/repositories/_cat/snapshots/{repository}/_cat/templates
第二:_cluster系列
1、查詢設定叢集狀態
curl -XGET localhost:9200/_cluster/health?pretty=true pretty=true表示格式化輸出 level=indices 表示顯示索引狀態 level=shards 表示顯示分區資訊
2、顯示叢集系統資訊,包括CPU、JVM等等
curl -XGET localhost:9200/_cluster/stats?pretty=true
3、 顯示叢集的詳細資料,包括節點、分區等。
curl -XGET localhost:9200/_cluster/state?pretty=true
4、擷取叢集堆積的任務。
curl -XGET localhost:9200/_cluster/pending_tasks?pretty=true
5、修改叢集配置
舉例:
curl -XPUT localhost:9200/_cluster/settings -d ‘{ "persistent" : { "discovery.zen.minimum_master_nodes" : 2 }}‘
transient 表示臨時的,persistent表示永久的
6、對shard的手動控制
curl -XPOST ‘localhost:9200/_cluster/reroute’ -d ‘xxxxxx’
參考http://zhaoyanblog.com/archives/687.html
7、關閉節點
例如:關閉指定192.168.1.1節點
curl -XPOST ‘http://192.168.1.1:9200/_cluster/nodes/_local/_shutdown‘curl -XPOST ‘http://localhost:9200/_cluster/nodes/192.168.1.1/_shutdown‘
關閉主節點
curl -XPOST ‘http://localhost:9200/_cluster/nodes/_master/_shutdown‘
關閉整個叢集
$ curl -XPOST ‘http://localhost:9200/_shutdown?delay=10s‘$ curl -XPOST ‘http://localhost:9200/_cluster/nodes/_shutdown‘$ curl -XPOST ‘http://localhost:9200/_cluster/nodes/_all/_shutdown‘delay=10s表示延遲10秒關閉
第三:_nodes系列
1、查詢節點的狀態
curl -XGET ‘http://localhost:9200/_nodes/stats?pretty=true‘curl -XGET ‘http://localhost:9200/_nodes/192.168.1.2/stats?pretty=true‘curl -XGET ‘http://localhost:9200/_nodes/process‘curl -XGET ‘http://localhost:9200/_nodes/_all/process‘curl -XGET ‘http://localhost:9200/_nodes/192.168.1.2,192.168.1.3/jvm,process‘curl -XGET ‘http://localhost:9200/_nodes/192.168.1.2,192.168.1.3/info/jvm,process‘curl -XGET ‘http://localhost:9200/_nodes/192.168.1.2,192.168.1.3/_all‘curl -XGET ‘http://localhost:9200/_nodes/hot_threads‘
第四:索引操作
1、擷取索引
curl -XGET ‘http://localhost:9200/{index}/{type}/{id}‘
2、索引資料
curl -XPOST ‘http://localhost:9200/{index}/{type}/{id}’ -d‘{“a”:”avalue”,”b”:”bvalue”}‘
3、刪除索引
curl -XDELETE ‘http://localhost:9200/{index}/{type}/{id}‘
4、設定mapping
curl -XPUT http://localhost:9200/{index}/{type}/_mapping -d ‘{ "{type}" : { "properties" : { "date" : { "type" : "long" }, "name" : { "type" : "string", "index" : "not_analyzed" }, "status" : { "type" : "integer" }, "type" : { "type" : "integer" } } }}‘
5、擷取mapping
curl -XGET http://localhost:9200/{index}/{type}/_mapping
6、搜尋
curl -XGET ‘http://localhost:9200/{index}/{type}/_search‘ -d ‘{ "query" : { "term" : { "user" : "kimchy" } //查所有 "match_all": {} }, "sort" : [{ "age" : {"order" : "asc"}},{ "name" : "desc" } ], "from":0, "size":100}curl -XGET ‘http://localhost:9200/{index}/{type}/_search‘ -d ‘{ "filter": {"and":{"filters":[{"term":{"age":"123"}},{"term":{"name":"張三"}}]}, "sort" : [{ "age" : {"order" : "asc"}},{ "name" : "desc" } ], "from":0, "size":100}
參考原創連結地址:http://zhaoyanblog.com/archives/732.html
學慣用Node.js和Elasticsearch構建搜尋引擎(三)