Re: facets & docValues

2020-05-07 Thread Joel Bernstein
You can be pretty sure that adding static warming queries will improve your performance following softcommits. But, opening new searchers every 2 seconds may be too fast to allow for warming so you may need to adjust. As a general rule you cannot open searchers faster than you can warm them. Joel

Solr 8.2.0 Collection API Backup Failing with Azure fileshare

2020-05-07 Thread tbarkley29
Hello, We are running Solr 8.2.0 in cloud mode with a 3 node cluster in Azure kubernetes. We have an Azure fileshare mounted in order to perform backups using the collection API e.g., /mnt/azure The collection I'm using to test has 1 shard and 3 replicas with about 17GB worth of data per replica.

Can perform partial searches without fieldname in solr

2020-05-07 Thread erars+jonathan.cook
Hello, I am trying to perform a partial search on a field in solr. my_id: ABC_00123 I would like to search for 123 and see this item. I cannot get it to work without using the my_id field in the query. In my schema.xml I have put: positionIncrementGap="100">

Re: Minimum Match Query

2020-05-07 Thread Russell Bahr
Thank you Emir, we will give this a try. Russ On Thu, May 7, 2020 at 12:55 AM Emir Arnautović < emir.arnauto...@sematext.com> wrote: > Hi Russel, > You are right about mm - it is about min term matches. Frequencies are > usually used to determine score. But you can also filter on number of > ma

Re: Dead solr nodes in k8

2020-05-07 Thread Vishal Vaibhav
Thanks for the suggestion. I have made solr host as the pod dns . Solr operator is great but needs lots of in depth of k8 expertise. I did a helm chart provided by lucidworks. Couple of quick queries what I am observing.. Whenever my pod comes up , I create a collection And then I use ADDREPLiCA.

Combined virtual conference announced with content on Solr, search & relevance

2020-05-07 Thread Charlie Hull
The teams behind Berlin Buzzwords , Haystack the search relevance conference, and MICES the ecommerce search event are happy to announce a week of virtual talks, panel discussions, workshops and training sessions cover

Re: Minimum Match Query

2020-05-07 Thread Emir Arnautović
Hi Russel, You are right about mm - it is about min term matches. Frequencies are usually used to determine score. But you can also filter on number of matches using function queries: fq={!frange l=3}sum(termfreq(field, ‘barker’), termfreq(field, ‘jones’), termfreq(field, ‘baker’)) It is not pe