I want to get cluster state of my SolrCloud and this is my method:

private final CloudSolrServer solrServer;

public SolrCloudServerFactory(String zkHost) throws MalformedURLException {
     this.solrServer = new CloudSolrServer(zkHost);
     solrServer.connect();
}

and I get what I want from solrServer variable. However I killed a running
Solr node from my cluster and I see that clusterstate.json at still shows
it as active and my solrserver variable says same thing too. I have killed
that start.jar but why it is still active? How can I understand it is down?
I think that Solr admin page doesn't look at clusterstate.json?

Reply via email to