Improve results/relevance

2020-10-16 Thread Jayadevan Maymala
Hi all, We have a catalogue of many products, including smart phones. We use *edismax* query parser. If someone types in iPhone 11, we are getting the correct results. But iPhone 11 Pro is coming before iPhone 11. What options can be used to improve this? Regards, Jayadevan

Re: Order of applying tokens/filter

2020-10-05 Thread Jayadevan Maymala
> > ICUNormalizer2CharFilterFactory name=“nfkc_cf” (the default) > WhitespaceTokenizerFactory > SynonymGraphFilterFactory > FlattenGraphFilterFactory > KStemFilterFactory > RemoveDuplicatesFilterFactory > > One doubt related to this. Ideally, the same sequence should be followed for indexing and

Re: Order of applying tokens/filter

2020-10-05 Thread Jayadevan Maymala
> ICUNormalizer2CharFilterFactory name=“nfkc_cf” (the default) > WhitespaceTokenizerFactory > SynonymGraphFilterFactory > FlattenGraphFilterFactory > KStemFilterFactory > RemoveDuplicatesFilterFactory > > Thanks a lot. Very useful insights. Regards, Jayadevan

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

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

Re: Simple query

2020-08-24 Thread Jayadevan Maymala
ow terms are removed or > transformed by each filter of the analysis chain for a field or a > fieldtype. > > Regards > > Dominique > > > Le lun. 24 août 2020 à 12:01, Jayadevan Maymala > a écrit : > > > Hi all, > > I am learning the basics of Solr

Simple query

2020-08-24 Thread Jayadevan Maymala
Hi all, I am learning the basics of Solr querying and am not able to figure out something. The first query which searches for 'apac' fetches no documents. The second one which searches for 'apach' , i.e. add h - one more character, fetches a document. curl -X GET "

Solr and commits

2020-08-12 Thread Jayadevan Maymala
Hi all, A few doubts about commits. 1)If no commit parameters are passed from a client (solarium) update, will the autoSoftCommit values automatically work? 2) When we are not committing from the client, when will the data actually be flushed to disk? Regards, Jayadevan

SynonymFilterFactory deprecated, documentation and search

2020-07-30 Thread Jayadevan Maymala
Hi all, We have been using SynonymFilterFactory with Solr 7.3. It seems to be working, Going through the documentation for 8.6, I noticed that it was deprecated a long time ago, probably before 7.3 The documentation at this url, for version 8.6 -

Re: Copying data

2020-03-17 Thread Jayadevan Maymala
On Mon, Mar 16, 2020 at 5:53 PM Erick Erickson wrote: > It’s not at all clear what the problem is. If you have a single-shard > collection, just > 1> create the stand-alone core > 2> shut down the Solr instance > 3> replace the stand-alone core's data dir with one from any of your prod >

Copying data

2020-03-15 Thread Jayadevan Maymala
Hi all, I have a 3 node Solr cluster in production (with zoo keeper). In dev, I have one node Solr instance, no zoo keeper. Which is the best way to copy over the production solr data to dev? Operating system is CentOS 7.7, Solr Version 7.3 Collection size is in the 40-50 GB range. Regards,

Re: Solr status showing wrong data

2019-09-24 Thread Jayadevan Maymala
> > Thus, can I ask you to share your JVM heap config or confirm the maths > with that yourself? *I guess you Xms is 4G while Xmx is probably around > 16G. * > Indeed, it is -Xmx18g Thank you for setting that straight. Regards, Jayadevan

Solr status showing wrong data

2019-09-23 Thread Jayadevan Maymala
Hi, I just tried service solr status on my CentOS machine. It gave this output for memory utilization - "memory":"2 GB (%11.8) of 3.8 GB", 2 GB is not 11.8% of 3.8 GB. Is it that I am not understanding the output correctly? Solr Version - 7.3.0 CentOS 7.7 Regards, Jayadevan

Solr query fetching different results

2019-09-18 Thread Jayadevan Maymala
Hi all, There is something "strange' happening in our Solr cluster. If I execute a query from the server, via solarium client, I get one result. If I execute the same or similar query from admin Panel, I get another result. If I go to Admin Panel - Collections - Select Collection and click

Re: Issue with delete

2019-09-09 Thread Jayadevan Maymala
On Mon, Sep 9, 2019 at 11:11 AM Jörn Franke wrote: > Do you commit after running the delete? > The "commit=true" part would take care of that? > > Am 09.09.2019 um 06:59 schrieb Jayadevan Maymala < > jayade...@ftltechsys.com>: > > > > Hello All,

Issue with delete

2019-09-08 Thread Jayadevan Maymala
Hello All, I have a 3-node Solr cluster using a 3-node Zoookeeper system. Solr Version is 7.3.0. We have batch deletes which were working a few days ago. All of a sudden, they stopped working (I did run a yum update on the client machine - not sure if it did anything to the Guzzle client). The

Upgrading from 7.3 to 8.2

2019-08-01 Thread Jayadevan Maymala
Hi all, We have a 3 node solr cluster - version 7.3.0 using zookeeper -version 3.4.12, running on CentOS Linux release 7.6.1810. I would like to upgrade to Solr version 8.2. Is it necessary to upgrade zookeeper also? Is it OK to upgrade directly to 8.2? Any tips/checklist would be welcome.

Re: Solr Backup

2019-07-31 Thread Jayadevan Maymala
On Tue, Jul 30, 2019 at 7:54 PM Jan Høydahl wrote: > The FS backup feature requires a shared drive as you say, and this is > clearly documented. No way around it. Cloud Filestore would likely fix it. > > Or you could write a new backup repo plugin for backup directly to Google > Cloud Storage? >

Re: Solr Backup

2019-07-30 Thread Jayadevan Maymala
On Tue, Jul 30, 2019 at 5:56 PM Shawn Heisey wrote: > On 7/30/2019 5:41 AM, Jayadevan Maymala wrote: > > We have a 3-node Solr cluster running on google cloud platform. I would > > like to schedule a backup and have been trying the backup

Solr Backup

2019-07-30 Thread Jayadevan Maymala
Hello all, We have a 3-node Solr cluster running on google cloud platform. I would like to schedule a backup and have been trying the backup API and getting java.nio.file.NoSuchFileException:java.nio.file.NoSuchFileException error. I suspect it is because a shared drive is necessary. Google VM