我已经开始使用elasticsearch.bat并使用Nest
完成了第一次索引ElasticClient.Index查询。
然后我使用
进行了第一次查询var results = ElasticClient.Search<Product>(body =>
body.Query(query =>
query.QueryString(qs => qs.Query(key))));
这就是我所做的一切。后来我使用elasticsearch.bat重新启动了elasticsearch控制台,现在它一直给我错误消息NoShardAvailableException。我删除并重新下载了一个新的elasticsearch.bat,我不断收到相同的错误。我该如何解决?
我正在使用1.7.1版本,顺便说一下我也安装了Marvel插件。
答案 0 :(得分:1)
您的问题与版本无关,因此更新无法解决问题。问题是无法将分片分配给节点。如您的通话所示,请参阅"status": "red"
和"unassigned_shards": 8
:
{
"cluster_name": "elasticsearch",
"status": "red",
"timed_out": false,
"number_of_nodes": 2,
"number_of_data_nodes": 2,
"active_primary_shards": 8,
"active_shards": 16,
"relocating_shards": 0,
"initializing_shards": 0,
"unassigned_shards": 8,
"delayed_unassigned_shards": 0,
"number_of_pending_tasks": 0,
"number_of_in_flight_fetch": 0
}
首先,您可以尝试使用see es for more on this重新分配unassigned_shards
:
curl -XPOST 'localhost:9200/_cluster/reroute' -d '{"commands": [
{"allocate": {
"index": "{your_index_name}",
"shard": 3,
"node": "{your_assigning_node_ide}",
"allow_primary": true }
}]
}'
哪些分片未分配?要查看此内容,请使用:
curl -XGET http://localhost:9200/_cat/shards | grep UNASSIGNED | awk '{print $0}'
当您知道哪些分片会产生问题时,您可以先尝试recover
索引,然后使用indices recovery:
curl -XGET http://localhost:9200/index1,index2/_recovery
我发现grep UNASSIGNED
语句特别有用,如果一对夫妇未分配。有时它更容易(当然取决于重新填充索引的容易程度),删除并重新填充索引,在这种情况下(delete indices):
curl -XDELETE 'http://localhost:9200/concept_cv,concept_pl,concept_pt/'
然后重新插入您的数据。
此问题很可能是由于群集关闭不正确,可能还有OOM异常。有关status : red
的详细信息:
https://t37.net/how-to-fix-your-elasticsearch-cluster-stuck-in-initializing-shards-mode.html
http://elasticsearch-users.115913.n3.nabble.com/how-to-resolve-elasticsearch-status-red-td4020369.html