ElasticSearch 獲取es資訊以及索引操作

奮程式序猿發表於2018-03-29

檢查叢集的健康情況

GET /_cat/health?v

green:每個索引的primary shard和replica shard都是active狀態的
yellow:每個索引的primary shard都是active狀態的,但是部分replica shard不是active狀態,處於不可用的狀態
red:不是所有索引的primary shard都是active狀態的,部分索引有資料丟失了

快速檢視叢集中有哪些索引 

GET /_cat/indices?v

建立索引

PUT /test_index

{
   "settings" : {
      "number_of_shards" : 3,
      "number_of_replicas" : 1
   }
}
test_index 表示索引的名稱
number_of_shards 表示分片數
number_of_replicas 表示副本數
成功會返回
{
"acknowledged": true,
"shards_acknowledged": true,
"index": "test_index"
}

刪除索引

DELETE /test_index

 修改索引副本數

PUT /my_temp_index/_settings
{
    "number_of_replicas": 2
}

轉載請註明來自:http://www.cnblogs.com/phpshen/p/8668833.html

相關文章