您好,登錄后才能下訂單哦!
一,索引操作
curl -XPUT http://127.0.0.1:9200/xrf_test_index001 -d '{"setting":{"index":{"number_of_shards":5,"number_of_replication":1}}}' #創建手動指定分片副本
curl -XPOST http://127.0.0.1:9200/xrf_test_index001/_close #關閉索引
curl -XPOST http://127.0.0.1:9200/xrf_test_index001/_open #開啟索引
curl -XDELETE http://127.0.0.1:9200/xrf_test_index001 #刪除索引
curl -XPUT http://127.0.0.1:9200/xrf_test_index001/_settings -d '{"index":{"number_of_replicas":1}}' #調整副本數量
curl -XPOST http://127.0.0.1:9200/_aliases -d '{"actions":[{"add":{"index":"xrf_test_index001","alias":"xrf_test"}}]}' #增加索引別名
curl -XPOST http://127.0.0.1:9200/_aliases -d '{"actions":[{"remove":{"index":"xrf_test_index001","alias":"xrf_test"}}]}' #刪除別名
二,分片操作
curl -XPUT http://127.0.0.1:9200/_cluster/settings -d '{"transient":{"cluster.routing.allocation.enable":"none"}}' #關閉自動分片 persistent 表示永久
curl -XPUT http://127.0.0.1:9200/_cluster/settings -d '{"transient":{"cluster.routing.allocation.enable":"all"}}' #開起自動分片
curl -XPUT http://127.0.0.1:9200/_cluster/settings -d '{"transient":{"cluster.routing.allocation.cluster_concurrent_rebalance":5}}' #設置分片均衡線程數
curl -XPUT http://127.0.0.1:9200/_cluster/settings -d '{"transient":{"cluster.routing.allocation.exclude._ip":"1.1.1.1"}}' #排除機器或者節點,改節點上的分片將調整到其他節點,支持_name,_hostname,_ip
三,節點操作
curl -XPOST http://127.0.0.1:9200/_cluster/nodes/_local/_shutdown?delay=10s #延遲10s關閉本機節點,2.x以后無效kill $pid
curl -XPOST http://127.0.0.1:9200/_cluster/nodes/nodeId1,nodeId2/_shutdown #關閉節點nodeId1,nodeId2
curl -XPOST http://127.0.0.1:9200/_cluster/nodes/_master/_shutdown #關閉主節點
四,狀態查看
curl -XGET http://127.0.0.1:9200/_cluster/nodes #獲得集群中的節點列表和信息
curl -XGET http://127.0.0.1:9200/_cluster/health #獲得集群信息
curl -XGET http://127.0.0.1:9200/_cluster/state #獲得集群里的所有信息(集群信息、節點信息、mapping信息等)
curl -XGET http://127.0.0.1:9200/_cat/nodes #查看集群節點列表
curl -XGET http://127.0.0.1:9200/_cat/indices #查看集群索引列表
curl -XGET http://127.0.0.1:9200/_cat/shards #查看集群分片列表
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。