elasticsearch 集群健康與問題排查

2022-04-10 06:57:13 字數 699 閱讀 4876

#案例1

delete mytest

put mytest

}#檢查集群狀態,檢視是否有節點丟失,有多少分片無法分配

get /_cluster/health/

#檢視索引級別,找到紅色的索引

get /_cluster/health?level=indices

#檢視索引的分片

get

_cluster/health?level=shards

#explain 變紅的原因

get /_cluster/allocation/explain

get /_cat/shards/mytest

get

_cat/nodeattrs

delete mytest

get /_cluster/health/put mytest

}get /_cluster/health/

#案例2, explain 看 hot 上的 explain

delete mytest

put mytest

}get

_cluster/health

get

_cat/shards/mytest

get /_cluster/allocation/explain

put mytest/_settings

構建elasticsearch集群

初始化系統環境 在 etc security limits.conf 增加如下兩行 elasticsearch soft nofile 4096 elasticsearch hard nofile 65536 curl o elasticsearch 解壓軟體包 tar xvf elasticsea...

Elasticsearch集群搭建

1 主節點 儲存資料資訊 meta data 元資料 描述資料的資料,客戶端通過主節點獲取真正的資料位置,到資料節點datanode獲取資料分片 2 資料節點 只負責資料的讀和寫 3 負載均衡節點 當主節點連線的客戶端過多,可以引入負載均衡節點 分擔併發,既不是主節點,也不是資料節點 搭建另外兩台e...

Elasticsearch集群搭建

1 分發 scp 2.修改每一台機器的配置檔案 a 集群的名字 cluster.name my es b 節點名字 node.name node 1 c es儲存資料的路徑 path.data home zpark esdata data d es生成log資訊的路徑 path.logs home ...