Solr[Q] -No live SolrServers available to handle this request, no servers hosting shard

时间:2022-12-19 10:00:32

No live SolrServers available to handle this request , no servers hosting shard

当某一片索引对应的结点全部宕了以后,会报这个异常。

"error": {
"msg": "no servers hosting shard: ",
"code": 503
}

  

需要在请求上加上:

params.setParam("shards.tolerant", true)

表示只从存活的节点上获取数据。因此这个时候数据极有可能是不完整的。