Re: Admin Console Question

2017-11-14 Thread Rick Leir
Homer In chrome, right-click and choose 'inspect' at the bottom. Now go to the network tab then reload the page. Are you seeing errors? Tell! Thanks Rick On November 14, 2017 3:14:46 PM EST, Shawn Heisey wrote: >On 11/14/2017 11:43 AM, Webster Homer wrote: >> I am using

Re: Limiting by range of sum across documents

2017-11-14 Thread Emir Arnautović
Hi Chris, I misunderstood your requirement. I am not aware of some facet result filtering feature. What you could do is sort facet results by sum and load page by page but that does not sound like a good solution. Did you try using streaming expressions - I don’t have much experience with this

Re: Admin Console Question

2017-11-14 Thread Shawn Heisey
On 11/14/2017 11:43 AM, Webster Homer wrote: > I am using chrome Version 62.0.3202.94 (Official Build) (64-bit) I > only see a little icon and the word "Args" with nothing displayed. I > just checked with Firefox (version 56.0.2) and I see the same thing. That's the same version of Chrome that I

Re: [WARNING: DropBox links may be malicious.] Re: Admin Console Question

2017-11-14 Thread Webster Homer
For what it's worth, all of our solr installations install solr as a service On Tue, Nov 14, 2017 at 12:43 PM, Webster Homer wrote: > I am using chrome Version 62.0.3202.94 (Official Build) (64-bit) > > I only see a little icon and the word "Args" with nothing displayed.

Streaming innerJoin slow after upgrading from 6.2 to 7.1

2017-11-14 Thread Webster Homer
Prior to upgrading to 7.1 from 6.2 this innerJoin streaming expression returned in ~10 seconds when run from the Solr Admin Console: innerJoin( search(sial-catalog-material,

Re: [WARNING: DropBox links may be malicious.] Re: Admin Console Question

2017-11-14 Thread Webster Homer
I am using chrome Version 62.0.3202.94 (Official Build) (64-bit) I only see a little icon and the word "Args" with nothing displayed. I just checked with Firefox (version 56.0.2) and I see the same thing. Args is not clickable On Tue, Nov 14, 2017 at 9:53 AM, Erick Erickson

Re: Index time boosting

2017-11-14 Thread Erick Erickson
Do not use index time boosting, please. When something is deprecated, the usual process is that that functionality is supported for one major version after deprecation, then the devs are free to remove it. Index time boosting is not supported in 7.0 even though it is in 6x, from CHANGES.txt, the

Re: How to routing document for send to particular shard range

2017-11-14 Thread Erick Erickson
These numbers aren't very useful. inserting how much data? Querying how much data? What kinds of queries? Are you indexing in batches or one document at a time? Are you using SolrJ and CloudSolrClient? 94 seconds to do _what_? Execute 1,000 queries? Fetch all the documents from the shard? Execute

Re: Limiting by range of sum across documents

2017-11-14 Thread Erick Erickson
Maybe pivot facets and stats? See: https://lucene.apache.org/solr/guide/6_6/faceting.html On Tue, Nov 14, 2017 at 7:51 AM, wrote: > > > > I'm not looking for products where the price is in the range [100, 200]. > I'm looking for manufacturers for which the sum of the

Re: Admin Console Question

2017-11-14 Thread Erick Erickson
Webster: What browser and version of browser? On Tue, Nov 14, 2017 at 7:49 AM, Shawn Heisey wrote: > On 11/14/2017 8:33 AM, Webster Homer wrote: >> We're in the process of upgrading to Solr 7.1. I noticed that the 7.1 Admin >> Dashboard in the Console no longer displays the

Re: Limiting by range of sum across documents

2017-11-14 Thread chris
I'm not looking for products where the price is in the range [100, 200]. I'm looking for manufacturers for which the sum of the prices of all of their products is in the range [100, 200]. � > Hi Chris, > > I assumed that you apply some sort of fq=price:[100 TO 200] to focus on > wanted

Re: Admin Console Question

2017-11-14 Thread Shawn Heisey
On 11/14/2017 8:33 AM, Webster Homer wrote: > We're in the process of upgrading to Solr 7.1. I noticed that the 7.1 Admin > Dashboard in the Console no longer displays the Args section showing all > the startup parameters. Instead I just see "Arg" with nothing next to it. > This has been quite

Re: Sol rCloud collection design considerations / best practice

2017-11-14 Thread Shawn Heisey
On 11/13/2017 12:33 PM, Shamik Bandopadhyay wrote: > I'm looking for some input on design considerations for defining > collections in a SolrCloud cluster. Right now, our cluster consists of two > collections in a 2 shard / 2 replica mode. Each collection has a dedicated > set of source and

Re: Admin Console Question

2017-11-14 Thread Cassandra Targett
I just started 7.1 and see the Args section populated and I don't recall any issue that intended to modify the prior behavior. Can you describe how you're starting? On Tue, Nov 14, 2017 at 9:33 AM, Webster Homer wrote: > We're in the process of upgrading to Solr 7.1. I

Admin Console Question

2017-11-14 Thread Webster Homer
We're in the process of upgrading to Solr 7.1. I noticed that the 7.1 Admin Dashboard in the Console no longer displays the Args section showing all the startup parameters. Instead I just see "Arg" with nothing next to it. This has been quite useful as we don't have access to the startup scripts

RE: How to routing document for send to particular shard range

2017-11-14 Thread Ketan Thanki
Thanks Amrit , Actually we have huge amount of data so that's why thinking to index data into particular shard accept it's looks difficult but need to achieve the performance using document routing for huge data. With configuration of 4 shard and 4 replica is it better to distribute the

Re: How to get a solr core to persist

2017-11-14 Thread Shawn Heisey
On 11/14/2017 2:14 AM, Amanda Shuman wrote: We have just one solr core, which resides in the webapp foIder (in solr 5.3.1 this is at /opt/solr-5.3.1/server/webapps/[corename]/ -- the data folder is in the same place at /data). Why is your core there? That is not a typical location, and does

Re: Index time boosting

2017-11-14 Thread Venkateswarlu Bommineni
Thanks for the reply Amit. I have Solr 6.6 source code and I can still see the code which sets the index level boost value. If the class name is handy for you , could you please tell me where we will calculate the score of a document. so that i can just go through the code. Thanks, Venkat. On

Computing payload score of other term and querying different field at the same time

2017-11-14 Thread isspek
Hi all, I am using payload in Solr 7.0.0. I have a question about how to write payload score query computing scores of more than one terms on field name (payloads). Also, at the same time I am trying to query a different field (exp: content) by using different Lucene Query Parser. I tried the

Re: Index time boosting

2017-11-14 Thread Amrit Sarkar
Hi Venkat, FYI: Index time boosting has been deprecated from latest versions of Solr: https://issues.apache.org/jira/browse/LUCENE-6819. Not sure which version you are on, but best consider the comments on the JIRA before using it. Amrit Sarkar Search Engineer Lucidworks, Inc. 415-589-9269

Re:Given path of Ranklib model in Solr Model Json

2017-11-14 Thread isspek
Hi Diego, My bad I had not given my external store containing features in solr model, that's why I received error from Solr server. Your code for parsing of tree works fine. Thank you so much. isspek -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Index time boosting

2017-11-14 Thread Venkateswarlu Bommineni
Hello Guys, I would like to understand how index time boosting works in Solr. and how it is relates to ommitNorms property in schema.xml. and i am trying to understand how it works internally , if you have any documentation please provide. Thanks, Venkat.

Re: SOLR not deleting records

2017-11-14 Thread Amrit Sarkar
A little more information would be beneficial; COLO1 and COLO2 are collections? if yes, both have same configurations and you are positively issuing deletes to the IDs already present in index etc. Amrit Sarkar Search Engineer Lucidworks, Inc. 415-589-9269 www.lucidworks.com Twitter

How to get a solr core to persist

2017-11-14 Thread Amanda Shuman
Hi all, I consider myself relatively new to server admin (it's something I have to do on the side for the project I'm on and I inherited the current solr setup from my predecessor), so please be kind. The issue: We have just one solr core, which resides in the webapp foIder (in solr 5.3.1 this