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
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
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
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
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
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
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
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