Re: How to persist the data in dataimport.properties

2020-09-09 Thread Bernd Fehling
It is kept in zookeeper within /configs/[collection_name], at least with my SolrCloud 6.6.6. bin/solr zk ls /configs/[your_collection_name] Regards Bernd Am 08.09.20 um 21:40 schrieb yaswanth kumar: > Can someone help me on how to persists the data that's updated in > dataimport.properties file

Unexpected behaviour for bracket

2020-09-09 Thread Jan Nehring
Hi fellow Solr users, I use Solr in an application for full text search in textual data and I spent a lot of time debugging a strange behaviour of Solr. When I search for (ABC) then I want results with (ABC) in brackets only. But I get results for ABC also, without brackets. I tried several

Re: Solr Schema API seems broken to me after 8.2.0

2020-09-09 Thread jeanc...@gmail.com
Thanks for the reply, I didn't see anything in the Solr logs BUT I'm going to recheck it next week and update you. Will check this as well: * It could be that after the upgrade some filesystem permissions do not work anymore * Thanks Best Regards, *Jean Silva* https://github.com/jeancsil htt

NullPointerException in IndexSearcher.explain() when using ComplexPhraseQueryParser

2020-09-09 Thread Michał Słomkowski
Hello, I get NPE when I use IndexSearcher.explain(). Checked with Lucene 8.6.0 and 8.6.2. The query: (lorem AND NOT "dolor lorem") OR ipsum The text: dolor lorem ipsum Stack trace: > java.lang.NullPointerException > at java.util.Objects.requireNonNull(Objects.java:203) > at org.apach

Re: Unexpected behaviour for bracket

2020-09-09 Thread Erick Erickson
Places to look: > add &debug=query to the query and look at the parsed result. Does the parsed > version match what you expect? Hint: un-check the “verbose” checkbox, at this > level the detailed information probably is just distracting. > The admin UI>>select_your_core>>analysis page. Put your

Lowercase-ing everything but acronyms

2020-09-09 Thread Dunham-Wilkie, Mike CITZ:EX
Hi SOLR list, I'm currently using the White Space tokenizer and the Lower Case filter with SOLR 7.3. I'd like to modify the logic to keep any tokens that are entirely upper case as upper case, and just apply the Lower Case filter (or something equivalent) to the remaining tokens. Is there a w

Re: Lowercase-ing everything but acronyms

2020-09-09 Thread Stavros Macrakis
I can't help you on the implementation issues, but... You may want to do something a little different than keep all-uppercase tokens in upper case. You may want simply to special-case all-uppercase stopwords, so that they are not ignored. The poster boy for that is IT, which in my last search appl

Re: Creating a phrase match feature in LTR

2020-09-09 Thread krishan goyal
Hi, Can anyone help me on this ? I am stuck on this for days. On Tue, Sep 8, 2020 at 3:02 PM krishan goyal wrote: > Thanks Dmitry. > > Using > "q": "{!complexphrase inOrder=true}fieldName:${input}" > works for single token queries but raises same exception when input is > multi token > > Using