Re: Querying in Solrcloud

2018-07-05 Thread Arturas Mazeika
ill be forwarded internally to a Solr instance which has > that > >> collection. > >> > >> ZooKeeper is used by Solr's Java client to look up the list of Solr > nodes > >> having the collection being queried. But if you are using PHP then you > can

Re: Querying in Solrcloud

2018-06-29 Thread Walter Underwood
Solr's collection e.g. >>>> http://host:port/solr/. You can use any Solr node >>>> for >>>> this request. If the node does not have the collection being queried >> then >>>> the request will be forwarded internally to a Solr instance which

Re: Querying in Solrcloud

2018-06-29 Thread Sushant Vengurlekar
> that > >> collection. > >> > >> ZooKeeper is used by Solr's Java client to look up the list of Solr > nodes > >> having the collection being queried. But if you are using PHP then you > can > >> probably keep a list of Solr nodes in configurati

Re: Querying in Solrcloud

2018-06-29 Thread Sushant Vengurlekar
gt; >> collection. > >> > >> ZooKeeper is used by Solr's Java client to look up the list of Solr > nodes > >> having the collection being queried. But if you are using PHP then you > can > >> probably keep a list of Solr nodes in configuration and randomly

Re: Querying in Solrcloud

2018-06-29 Thread Erick Erickson
gt;> one. A better implementation would be to setup a load balancer and put all >> Solr nodes behind it and query the load balancer URL in your application. >> >> On Sat, Jun 30, 2018 at 7:31 AM Sushant Vengurlekar < >> svengurle...@curvolabs.com> w

Re: Querying in Solrcloud

2018-06-29 Thread Sushant Vengurlekar
hant Vengurlekar < > svengurle...@curvolabs.com> wrote: > > > I have a question regarding querying in solrcloud. > > > > I am working on php code to query solrcloud for search results. Do I send > > the query to zookeeper or send it to a particular solr node? Ho

Re: Querying in Solrcloud

2018-06-29 Thread Shalin Shekhar Mangar
des behind it and query the load balancer URL in your application. On Sat, Jun 30, 2018 at 7:31 AM Sushant Vengurlekar < svengurle...@curvolabs.com> wrote: > I have a question regarding querying in solrcloud. > > I am working on php code to query solrcloud for search results.

Querying in Solrcloud

2018-06-29 Thread Sushant Vengurlekar
I have a question regarding querying in solrcloud. I am working on php code to query solrcloud for search results. Do I send the query to zookeeper or send it to a particular solr node? How does the querying process work in general. Thank you