Elasticsearch 集群相关命令

1、健康状态查看

curl http://localhost:9200/_cat/health?v

在这里插入图片描述
2、分片状态查看

curl -XGET 'http://localhost:9200/_cat/shards?v'

3、查看集群中不同节点、不同索引的状态

curl -XGET 'http://localhost:9200/_cat/shards?h=index,shard,prirep,state,unassigned.reason'

4、Elasticsearch集群健康状态显示为yellow排查

运行中的es,出现这种情况,一般都是磁盘使用过高。
磁盘使用超过设定百分比85%。
可以用以下命令查看当前系统的磁盘使用情况:
df -h

解决方案,可以删除之前不用的索引,可以参照以下地址解决。
https://www.cnblogs.com/operationhome/p/12130834.html

你可能感兴趣的:(java后台,elasticsearch,大数据,big,data)