low qps with high load averages on solrcloud

2015-02-04 Thread Suchi Amalapurapu
Hi Noticed that a solrcloud cluster doesn't scale linearly with # of nodes unlike the unsharded solr cluster. We are seeing a 10 fold drop in QPS in multi sharded mode. While some overhead is understandable, the pattern that we see is, some nodes load averages shoot up and that in turn skews up

Exception in unit tests for distributed search component

2014-11-25 Thread Suchi Amalapurapu
Hi I am trying to test a custom distributed component with solr 4.6.1 which extends BaseDistributedSearchTestCase but end up with the following error. There are lot of tests in the solr code base which extend BaseDistributedSearchTestCase. Not sure what is wrong here. Suchi

updateNumericDocValue in solr 4.6.1

2014-11-25 Thread Suchi Amalapurapu
All The following code changes don't seem to really update the docValue in my case. IndexWriter iw = core.getSolrCoreState().getIndexWriter(core).get(); value = Long.parseLong(score); Term term = new Term(ID, id1); iw.updateNumericDocValue(term, 'rank', value); iw.commit() Schema changes:

Re: fl rename of unique key in solrcloud

2014-11-16 Thread Suchi Amalapurapu
? On Nov 15, 2014, at 3:18 AM, Suchi Amalapurapu su...@bloomreach.com mailto:su...@bloomreach.com wrote: Solr version:4.6.1 On Sat, Nov 15, 2014 at 12:24 PM, Jeon Woosung jeonwoos...@gmail.com mailto:jeonwoos...@gmail.com wrote: Could you let me know version of the solr? On Sat

Re: fl rename of unique key in solrcloud

2014-11-15 Thread Suchi Amalapurapu
Solr version:4.6.1 On Sat, Nov 15, 2014 at 12:24 PM, Jeon Woosung jeonwoos...@gmail.com wrote: Could you let me know version of the solr? On Sat, Nov 15, 2014 at 5:05 AM, Suchi Amalapurapu su...@bloomreach.com wrote: Hi Getting the following exception when using fl renaming with unique

fl rename of unique key in solrcloud

2014-11-14 Thread Suchi Amalapurapu
Hi Getting the following exception when using fl renaming with unique key in the schema. http://host_name/solr/collection_name/select?q=dressfl=a1:p1 where p1 is the unique key for collection_name For collections with single shard, this works flawlessly but results in the following exception in

solrcore.properties in solrcloud

2014-05-11 Thread Suchi Amalapurapu
Hi Can some one clarify the role of solrcore.properties in Solr 4.3+? We can define custom properties in solrcore.properties and use them in solrconfig.xml Will this functionality be retained going forward? Suchi

Re: Query time boosts vs static boost function defined in solrconfig.xml

2013-02-17 Thread Suchi Amalapurapu
to accomplish. I mean, what issue you are trying to address. -- Jack Krupansky -Original Message- From: Suchi Amalapurapu Sent: Friday, February 15, 2013 2:21 AM To: solr-user@lucene.apache.org Subject: Query time boosts vs static boost function defined in solrconfig.xml Query

Query time boosts vs static boost function defined in solrconfig.xml

2013-02-15 Thread Suchi Amalapurapu
Query time boost function seem to be loaded via local params while boost functions defined in solrconfig.xml get added to a request globally. QParser.geParams public String getParam(String name) { String val; if (localParams != null) { val = localParams.get(name); if (val !=