Converting a 3 node cloud to 1-node

2020-10-04 Thread Jayadevan Maymala
Hi all, We have a Solr cluster (Version 7.3) with 3 nodes in production. We are moving from one platform provider to another. Even after the move is complete, I would like to keep the Solr cloud in the existing platform running for a few weeks - just to compare search results, refer config files

Re: Order of applying tokens/filter

2020-10-04 Thread Walter Underwood
Several problems. 1. Do not remove stopwords. That is a 1970s-era hack for saving disk space. Want to search for “vitamin a”? Better not remove stopwords. 2. Synonyms are before the stemmer, especially the Porter stemmer, where the output isn’t English words. 3. Use KStem instead of Porter.

Re: Daylight savings time issue using NOW in Solr 6.1.0

2020-10-04 Thread vishal patel
Hello, Can anyone help me? Regards, Vishal Sent from Outlook From: vishal patel Sent: Thursday, October 1, 2020 4:51 PM To: solr-user@lucene.apache.org Subject: Daylight savings time issue using NOW in Solr 6.1.0 Hi I am using Solr

Re: Solr 7.7 - Few Questions

2020-10-04 Thread Rahul Goswami
Charlie, Thanks for providing an alternate approach to doing this. It would be interesting to know how one could go about organizing the docs in this case? (Nested documents?) How would join queries perform on a large index(200 million+ docs)? Thanks, Rahul On Fri, Oct 2, 2020 at 5:55 AM

Order of applying tokens/filter

2020-10-04 Thread Jayadevan Maymala
Hi all, Is this the best (performance-wise as well as efficacy) order of applying analyzers/filters? We have an eCom site where the many products are listed, and users may type in search words and get relevant results. 1) Tokenize on whitespace (WhitespaceTokenizerFactory) 2) Remove stopwords

Document centric external version conflict not returning 409

2020-10-04 Thread Deepu
Hi Team, I am using Solr document centric external version configuration to control concurrent updates. Followed sample configuration given in below github path.