I have solrCloud setup with 3 different machines. created collection with 3shards
& 2replicas
and indexed few documents into it. if I query using
URL like below
http:machineIP:8983/solr/collection1/select?q=*:*
I get results. if I change machineIP to any one 3 machine IP it will work.
My question is if the machine while requesting solr (say machine 1)is down how to redirect the query requests to other available solr machines(machine 2 or 3).
I am looking for one common point (or URL) to send requests to solrcloud. which will take care if a machine (or node)is failed, pass request to other available machines.
Thanks in advance, vinod