Solr spell check mutliwords
Could not figure out actual reason why my configured Solr spell checker not giving desire output. In my indexed data query: symphony+mobile has around 3.5K+ docs and spell checker detect it as correctly spelled. When i miss-spell "symphony" in query: symphony+mobile it showing only results for "mobile" and spell checker detect this query as correctly spelled. I have searched this query in different combination. Please find search result stat Query: symphony ResultFound: 1190 SpellChecker: correctly spelled Query: mobile ResultFound: 2850 SpellChecker: correctly spelled Query: simphony ResultFound: 0 SpellChecker: symphony Collation Hits: 1190 Query: symphony+mobile ResultFound: 3585 SpellChecker: correctly spelled Query: simphony+mobile ResultFound: 2850 SpellChecker: correctly spelled Query: symphony+mbile ResultFound: 1190 SpellChecker: correctly spelled In last two quries it should suggest something for miss-spelled word "simphony" and "mbile" Please find my configuration below. Only spell check configuration are given solrconfig.xml explicit 10 product_name on default wordbreak true 5 2 5 true true 5 3 spellcheck text_suggest default suggest solr.DirectSolrSpellChecker internal 0.5 wordbreak suggest solr.WordBreakSolrSpellChecker true true 10 5 schema.xml -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-spell-check-mutliwords-tp4218580.html Sent from the Solr - User mailing list archive at Nabble.com.
Solr spell check not showing any suggestions for other language
Solr spell check is not showing any suggestions for other language.I have indexed mutli-languages (english and bangla) in same core.It's showing suggestions for wrongly spelt english word but in case of wrongly spelt bangla word it showing "correctlySpelled = false" but not showing any suggestions for it. Please check my configuration for spell check below solrconfig.xml explicit 10 product_name on default wordbreak true 5 2 5 true true 5 3 spellcheck text_suggest default suggest solr.DirectSolrSpellChecker internal 0.5 wordbreak suggest solr.WordBreakSolrSpellChecker true true 10 5 schema.xml -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-spell-check-not-showing-any-suggestions-for-other-language-tp4220950.html Sent from the Solr - User mailing list archive at Nabble.com.
RE: Solr spell check not showing any suggestions for other language
Dear James Thank you for your reply. I tested analyser without “solr.EnglishPossessiveFilterFactory” but still no luck. I also updated analyser please find this below. with above configuration for “text_sugggest” i got following results For Correct Bangla Word: সহজ Solr response is Note: i set rows to 0 to skip results 0 2 সহজ true 0 xml 1438787238383 true For an Incorrect Bangla Word: সহগ where i just changed last letter and Solr response is 0 7 সহগ true 0 xml 1438787208052 false -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-spell-check-not-showing-any-suggestions-for-other-language-tp4220950p4221033.html Sent from the Solr - User mailing list archive at Nabble.com.
RE: Solr spell check not showing any suggestions for other language
Same results :( . Used following query http://localhost:8983/solr/product_live/select?q=%E0%A6%B8%E0%A6%B9%E0%A6%97&wt=json&indent=true&spellcheck=true&spellcheck.q=%E0%A6%B8%E0%A6%B9%E0%A6%97 -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-spell-check-not-showing-any-suggestions-for-other-language-tp4220950p4221217.html Sent from the Solr - User mailing list archive at Nabble.com.
Starting optimize... Reading and rewriting the entire index! Use with care
I recently installed Solr 6.4 and configured it to work with Full import of index using DataImportHandler as the data's were stored at SQL server. Now I want to do delta import for the new/updated records to be index to solr. But unfortunately this functionality is not working through my Solr Admin, But the new/updated data's are getting indexed automatically. When I verified the logs, I could see that the below warning messages are occurring recursively. "2018-12-19 16:13:21.927 WARN (qtp736709391-15) [ x:solrprod] o.a.s.u.DirectUpdateHandler2 Starting optimize... Reading and rewriting the entire index! Use with care." Kindly help and suggest whether rewriting the entire index is an issue or not and let me know whether it can impact my server or search. Thanks, Talha