Re: Solr cloud production set up

2020-01-20 Thread Rajdeep Sahoo
Please suggest anyone On Sun, 19 Jan, 2020, 9:43 AM Rajdeep Sahoo, wrote: > Apart from reducing no of facets in the query, is there any other query > params or gc params or heap space or anything else that we need to tweak > for improving search response time. > > On Sun, 19 Jan, 2020, 3:15 AM E

Re: Solr 7.7 heap space is getting full

2020-01-20 Thread Rajdeep Sahoo
The problem is happening for one index, for other two indexes it is working fine. For other two indexes indexing and search both are working fine. But for one index after indexing completion the heap space is getting full and solr is not responding at all. Index sizes are almost same,its arou

Re: Re: Re: Re: Handling overlapping synonyms

2020-01-20 Thread Audrey Lorberfeld - audrey.lorberf...@ibm.com
Hm, I'm not sure what you mean, but I am pretty new to Solr. Apologies! On 1/20/20, 12:01 PM, "fiedzia" wrote: >From my understanding, if you want regional sales manager to be indexed as both director of sales and area manager, you >would have to type: > >Regional sales ma

Re: Re: Anyone have experience with Query Auto-Suggestor?

2020-01-20 Thread David Hastings
Not a bad idea at all, however ive never used an external file before, just a field in the index, so not an area im familiar with On Mon, Jan 20, 2020 at 11:55 AM Audrey Lorberfeld - audrey.lorberf...@ibm.com wrote: > David, > > Thank you, that is useful. So, would you recommend using a (clean)

Re: Re: Re: Handling overlapping synonyms

2020-01-20 Thread fiedzia
>From my understanding, if you want regional sales manager to be indexed as both director of sales and area manager, you >would have to type: > >Regional sales manager -> director of sales, area manager that works for searching, but because everything is in the same position, searching for "dir

Solr console showing error in 7 .7

2020-01-20 Thread Rajdeep Sahoo
When reloading the solr console,it is showing some error in the console itself for some small amount of time. The error is error reloading/initialising the core.

Re: Re: Anyone have experience with Query Auto-Suggestor?

2020-01-20 Thread Audrey Lorberfeld - audrey.lorberf...@ibm.com
David, Thank you, that is useful. So, would you recommend using a (clean) field over an external dictionary file? We have lots of "top queries" and measure their nDCG. A thought was to programmatically generate an external file where the weight per query term (or phrase) == its nDCG. Bad idea?

Re: Anyone have experience with Query Auto-Suggestor?

2020-01-20 Thread David Hastings
Ive used this quite a bit, my biggest piece of advice is to choose a field that you know is clean, with well defined terms/words, you dont want an autocomplete that has a massive dictionary, also it will make the start/reload times pretty slow On Mon, Jan 20, 2020 at 11:47 AM Audrey Lorberfeld - a

Anyone have experience with Query Auto-Suggestor?

2020-01-20 Thread Audrey Lorberfeld - audrey.lorberf...@ibm.com
Hi All, We plan to incorporate a query autocomplete functionality into our search engine (like this: https://lucene.apache.org/solr/guide/8_1/suggester.html ). And I was wondering if anyone has personal experience with this component and would like to share? Basically, we are just looking for so

Re: Re: Re: Handling overlapping synonyms

2020-01-20 Thread Audrey Lorberfeld - audrey.lorberf...@ibm.com
From my understanding, if you want regional sales manager to be indexed as both director of sales and area manager, you would have to type: Regional sales manager -> director of sales, area manager I do not believe you can chain synonyms. Re: bigrams/trigrams, I was more interested in you want

Re: Index growing and growing until restart

2020-01-20 Thread Erick Erickson
Jörn: The only thing I can think of that _might_ cause this (I’m not all that familiar with the code) is if your solrconfig settings never open a searcher. Either you need to be sure openSearcher is set to true in the autocommit section in solrconfig.xml or your autoSoftCommit is set to somethi

Re: Re: Handling overlapping synonyms

2020-01-20 Thread fiedzia
> what is the reasoning behind adding the bigrams and trigrams manually like that? Maybe if we knew the end goal, we could figure out a different strategy. Happy that at least the matching is working now! I have large amount of synonyms and keep adding new ones, some of them partially overlap. It

Re: Index growing and growing until restart

2020-01-20 Thread Jörn Franke
From what is see it basically duplicates the index files, but does not delete the old ones. It uses caffeine cache. What I observe is that there is an exception when shutting down for the collection that is updated - timeout waiting for all directory ref counts to be released - gave up waiting

Select with concat function not working in 8.4.1

2020-01-20 Thread Guilherme Nunes
Greetings. In upgrading to solr 8.4.1, the following streaming expression is not working for me: select( cartesianProduct( tuple(k1="1", k2=array(a)), k2, productSort="k1 asc"), "k1”, concat(fields="k1",delim=",",as="node") ) Returnin

Re: Index growing and growing until restart

2020-01-20 Thread Jörn Franke
Sorry I missed a line - not tlog is growing but the /data/index folder is growing - until restart when it seems to be purged. > Am 20.01.2020 um 10:47 schrieb Jörn Franke : > > Hi, > > I have a test system here with Solr 8.4 (but this is also reproducible in > older Solr versions), which has

Need help in configuring Spell check in Apache Solr 8.4

2020-01-20 Thread seeteshh
Hello all, I am not able to check and test the spell check feature in Apache solr 8.4 Tried multiple examples including https://examples.javacodegeeks.com/enterprise-java/apache-solr/solr-spellcheck-example/ However I am not getting any results Regards, Seetesh Hindlekar -- Sent from: htt

Index growing and growing until restart

2020-01-20 Thread Jörn Franke
Hi, I have a test system here with Solr 8.4 (but this is also reproducible in older Solr versions), which has an index which is growing and growing - until the SolrCloud instance is restarted - then it is reduced tot the expected normal size. The collection is configured to do auto commit afte