Re: pySolr and other Python client options for SolrCloud.

2014-10-01 Thread S.L
That makes perfect sense , thanks again! On Wed, Oct 1, 2014 at 10:09 PM, Shawn Heisey wrote: > On 10/1/2014 7:08 PM, S.L wrote: > > Thanks ,load balancer seems to be the preferred solution here , I have a > > topology where I have 6 Solr nodes that support 3 shards with a > replication > > fact

Re: pySolr and other Python client options for SolrCloud.

2014-10-01 Thread Shawn Heisey
On 10/1/2014 7:08 PM, S.L wrote: > Thanks ,load balancer seems to be the preferred solution here , I have a > topology where I have 6 Solr nodes that support 3 shards with a replication > factor of 2. > > Looks like it woul dbe better to use the load balancers for querying > only.The question, tha

Re: pySolr and other Python client options for SolrCloud.

2014-10-01 Thread S.L
Shawn, Thanks ,load balancer seems to be the preferred solution here , I have a topology where I have 6 Solr nodes that support 3 shards with a replication factor of 2. Looks like it woul dbe better to use the load balancers for querying only.The question, that I have is if I go the load balancer

Re: pySolr and other Python client options for SolrCloud.

2014-10-01 Thread Shawn Heisey
On 10/1/2014 2:29 PM, S.L wrote: > Right , but my query was to know if there are any Python clients which > achieve the same thing as SolrJ , or the approach one should take when > using Python based clients. If the python client can support multiple hosts and failing over between them, then you

Re: pySolr and other Python client options for SolrCloud.

2014-10-01 Thread Alexandre Rafalovitch
I know of 10 Python Solr clients. you can find the list at: https://leanpub.com/solr-clients/read#leanpub-auto-clients I don't think any of them are as complete as SolrJ, but I would look at SolrCloudPy (it has a nice console too). Regards, Alex. Personal: http://www.outerthoughts.com/ and @ar

Re: pySolr and other Python client options for SolrCloud.

2014-10-01 Thread S.L
Right , but my query was to know if there are any Python clients which achieve the same thing as SolrJ , or the approach one should take when using Python based clients. On Wed, Oct 1, 2014 at 3:57 PM, Upayavira wrote: > > > On Wed, Oct 1, 2014, at 08:47 PM, S.L wrote: > > Hi All, > > > > We re

Re: pySolr and other Python client options for SolrCloud.

2014-10-01 Thread Upayavira
On Wed, Oct 1, 2014, at 08:47 PM, S.L wrote: > Hi All, > > We recently moved from a single Solr instance to SolrCloud and we are > using > pysolr , I am wondering what options (clients) we have from Python to > take advantage of Zookeeper and load balancing capabilities that > SolrCloud > prov

pySolr and other Python client options for SolrCloud.

2014-10-01 Thread S.L
Hi All, We recently moved from a single Solr instance to SolrCloud and we are using pysolr , I am wondering what options (clients) we have from Python to take advantage of Zookeeper and load balancing capabilities that SolrCloud provides if I were to use a smart client like Solrj? Thanks.