Load balancing within distributed search

2011-03-01 Thread Upayavira
The SolrCloud doc suggests a request a shard syntax like this: shards=localhost:8983/solr|localhost:8900/solr,localhost:7574/solr|localhost:7500/solr Where a pipe character (|) is used to provide load balancing facilities for shards. I've looked in trunk but cannot find anything that looks like

Re: Load balancing within distributed search

2011-03-01 Thread Alex Cowell
Hi Upayavira, I believe there is a basic implementation of load balancing for distributed search. The submit() method in the HttpCommComponent class within SearchHandler contains code which splits a pipe character delimited string of shards and uses a LoadBalancedHttpSolrServer to send requests

Re: Load balancing within distributed search

2011-03-01 Thread Upayavira
On Tue, 01 Mar 2011 13:18 +, Alex Cowell alxc...@gmail.com wrote: Hi Upayavira, I believe there is a basic implementation of load balancing for distributed search. The submit() method in the HttpCommComponent class within SearchHandler contains code which splits a pipe character