Re: Performance considerations when using distributed indexing + loadbalancing with Solr cloud

2013-05-03 Thread Edd Grant
Aah I see - very useful. Thanks! On 3 May 2013 15:49, Shawn Heisey wrote: > On 5/3/2013 8:35 AM, Edd Grant wrote: > > Thanks, that's exactly what I was worried about. If I take your suggested > > approach of using SolrCloudServer and the feeder learns which shard > lea

Re: Performance considerations when using distributed indexing + loadbalancing with Solr cloud

2013-05-03 Thread Edd Grant
f you > use another random processes or something like data will go any of nodes > and after that will be routed into the right place within cluster. This > extra routing process within cluster may cause unnecessary network traffic > and latency for indexing time as well. > > 20

Re: Performance considerations when using distributed indexing + loadbalancing with Solr cloud

2013-05-03 Thread Edd Grant
Hi, No we're actually POSTing them over plain old http. Our "feeder" process simply points at the HAProxy box and posts merrily away. Cheers, Edd On 3 May 2013 13:17, Furkan KAMACI wrote: > Do you use CloudSolrServer when you push documnts into SolrCloud to be > inde

Performance considerations when using distributed indexing + loadbalancing with Solr cloud

2013-05-03 Thread Edd Grant
Hi all, I have been playing with Solr Cloud recently and am enjoying the distributed indexing capability. At the moment my SolrCloud consists of 2 leaders and 2 replicas which are fronted by an HAProxy instance. I want to maximise performance for indexing and it occurred to me that the model I us

Re: How can I set configuration options?

2013-04-10 Thread Edd Grant
Thanks Hoss, those are some really useful clarifications. Since what I'm working on is currently at POC stage I'll go with the system properties and will refactor them out as I move towards having a standalone ZooKeeper ensemble. Thanks again. Edd On 10 April 2013 01:41, Chris Hostetter wrote:

Re: How can I set configuration options?

2013-04-09 Thread Edd Grant
at lines: > > #!/bin/sh > # > # > export JAVA_OPTS="$JAVA_OPTS > -Dbootstrap_confdir=./solr/collection1/conf > -Dcollection.configName=myconf -DzkRun > -DzkHost=localhost:9983,localhost:8574,localhost:9900 -DnumShards=2" > > > > 2013/4/9 Edd Grant > > > Hi a

How can I set configuration options?

2013-04-09 Thread Edd Grant
Hi all, I have been working through the examples on the SolrCloud page: http://wiki.apache.org/solr/SolrCloud I am now at the point where, rather than firing up Solr through start.jar, I'm deploying the Solr war in to Tomcat instances. Taking the following command as an example: java -Dbootstrap