ElasticSearch- 单节点 unassigned_shards 故障排查

在部署ELK的单机环境,当连接Kibana时候提示下面错误,即使重启整个服务也是提示Kibana server is not ready.

{“message”:“all shards failed: [search_phase_execution_exception] all shards failed”,“statusCode”:503,“error”:“Service Unavailable”}
排查过程#
前段时间ELK服务还是正常的,进入容器去ping ip 也都没问题,服务也都是Up 状态; ElasticSearch 服务也可以通过http://localhost:9200/ 访问到,但是就是kibana 不能连接ElasticSearch

ELK

再查看 kibana 日志发现如下信息, 其中包含了no_shard_available_action_exception, 看起来是分片 的问题。

{
“type”: “error”,
“@timestamp”: “2020-09-15T00:41:09Z”,
“tags”: [
“warning”,
“stats-collection”
],
“pid”: 1,
“level”: “error”,
“error”: {
“message”: “[no_shard_available_action_exception] No shard available for [get [.kibana][doc][config:6.8.11]: routing [null]]”,
“name”: “Error”,
“stack”: “[no_shard_available_action_exception] No shard available for [get [.kibana][doc][config:6.8.11]: routing [null]] ::

你可能感兴趣的:(android)