Re: Removing last replica from a SolrCloud collection

2014-02-01 Thread Mark Miller
We also really need to update the docs to use the collections API rather than the pre configured core as well. I've been aiming to get the preconfigured core (and hence collection) out of there by default for solrcloud, but it's not easy, because I do think it still makes some sense for non solrclo

Remove stemming without reindexing - currently using KStem

2014-02-01 Thread abhishek jain
Hi Friends, Is it possible to remove stemming without having to reindex the entire data, I am using KStem. Can we do so by query itself, not sure how? I am not using dismax. Thanks Abhishek

Re: Removing last replica from a SolrCloud collection

2014-02-01 Thread Mark Miller
It's expected behaviour. It's expected to change with the zk=cluster_truth mode that I hope we can start squeezing into 4.7. In the first couple releases of SolrCloud, there was no collections API. I did not have time to make it. Even what went in for the collections api was banged out in a very s

Re: SolrCloudServer questions

2014-02-01 Thread Software Dev
Also, if we are seeing a huge cpu spike on the leader when doing a bulk index, would changing any of the options help? On Sat, Feb 1, 2014 at 2:59 PM, Software Dev wrote: > Out use case is we have 3 indexing machines pulling off a kafka queue and > they are all sending individual updates. > > >

Re: SolrCloudServer questions

2014-02-01 Thread Software Dev
Out use case is we have 3 indexing machines pulling off a kafka queue and they are all sending individual updates. On Fri, Jan 31, 2014 at 12:54 PM, Mark Miller wrote: > Just make sure parallel updates is set to true. > > If you want to load even faster, you can use the bulk add methods, or if

RE: JVM heap constraints and garbage collection

2014-02-01 Thread Toke Eskildsen
Michael Della Bitta [michael.della.bi...@appinions.com] wrote: > Here at Appinions, we use mostly m2.2xlarges, but the new i2.xlarges look > pretty tasty primarily because of the SSD, and I'll probably push for a > switch to those when our reservations run out. > http://www.ec2instances.info/ i2.

Re: solr joins

2014-02-01 Thread Ahmet Arslan
Hi Anand, Mikhail writes about different join solutions and compares them. Here is couple of his write-ups. http://blog.griddynamics.com/2012/08/block-join-query-performs.html http://blog.griddynamics.com/2013/09/solr-block-join-support.html On Saturday, February 1, 2014 9:18 AM, anand ch

Re: Special character search in Solr and boosting without altering the resultset

2014-02-01 Thread Jack Krupansky
q=+term1 term2^0.6 Will require term1 but term2 is optional. -- Jack Krupansky -Original Message- From: abhishek jain Sent: Saturday, February 1, 2014 10:27 AM To: solr-user@lucene.apache.org ; 'Ahmet Arslan' Subject: RE: Special character search in Solr and boosting without altering

RE: Special character search in Solr and boosting without altering the resultset

2014-02-01 Thread abhishek jain
Hi, Thanks for replying but if i understand right: q=term1 term2^0.6 means it will search for term1 and term2 and somewhat less boost to term2, I want to search only for term1 and if the term2 exists boost by a positive factor . I am not able to make such a query . Thanks Abhishek > -Origi

Re: Special character search in Solr and boosting without altering the resultset

2014-02-01 Thread Ahmet Arslan
Hi, Can you elaborate your boosting requirement? There is a carat operator to boost query terms.  for example : q=term1 term2^0.6  On Saturday, February 1, 2014 1:51 PM, abhishek jain wrote: Hi, Ok thanks, will look more into it, Any info on boosting without altering the resultset? Thank

RE: Special character search in Solr and boosting without altering the resultset

2014-02-01 Thread abhishek jain
Hi, Ok thanks, will look more into it, Any info on boosting without altering the resultset? Thanks Abhishek > -Original Message- > > Hi Abhishek, > > dot is not a special character. Your field type / analyzer is stripping > that character. Please see similar discussions and alternativ