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 the
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:
D
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
testDistribSearch(com.
arthgr...@averyranchconsulting.com>> wrote:
> >
> > I see the same issue on 4.10.1.
> >
> > I’ll open a JIRA if I don’t see one.
> >
> > I guess the best immediate work around is to copy the unique field, and
> > use that field for renaming?
>
Solr version:4.6.1
On Sat, Nov 15, 2014 at 12:24 PM, Jeon Woosung
wrote:
> Could you let me know version of the solr?
>
> On Sat, Nov 15, 2014 at 5:05 AM, Suchi Amalapurapu
> wrote:
>
> > Hi
> > Getting the following exception when using fl renaming with unique key
Hi
Getting the following exception when using fl renaming with unique key in
the schema.
http:///solr//select?q=dress&fl=a1:p1
where p1 is the unique key for
For collections with single shard, this works flawlessly but results in the
following exception in case of multiple shards.
How do we fix
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
t; 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
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 != nul