Re: Can we restore an existing Solr cloud cluster in a new zookeeper ensemble?

2023-08-14 Thread Jan Høydahl
This being a DEV environent, I'd re-create it and re-index from source. If this is lots of manual work, I'd take the opportunity of automating it. Jan > 7. aug. 2023 kl. 22:52 skrev Shamik Bandopadhyay : > > Hi, > > We are running a Solr Cloud infrastructure in our DEV environment with 4 > So

Re: [EXTERNAL] authentication for Leader/Follower replication

2023-08-14 Thread Jan Høydahl
This is probably due to SecurityManager rejecting an unknown path. Try starting Solr with: -Dsolr.allowPaths=/netmnt/ or set env variable SOLR_OPTS="$SOLR_OPTS -Dsolr.allowPaths=/netmnt/" Then try again. Alternatively you can try disabling SecMgr withenv.var SOLR_SECURITY_MANAGER_ENABLED=false

Re: Unsubscribe Me

2023-08-14 Thread Rhoden Manahan
I already requested multiple times to unsubscribe me, why am I still not removed from the USERS mailing list?On Aug 13, 2023, at 5:25 PM, Rhoden Manahan wrote:

Re: Unsubscribe Me

2023-08-14 Thread Gora Mohanty
Dear Rhoden, Please check the mailing address that you are using when you try to unsubscribe. Your mail seems to be coming from rhoden.mana...@icloud.com.invalid and I doubt that is the address that you are subscribed with. Regards, Gora On Mon, 14 Aug 2023 at 15:50, Rhoden Manahan wrote: > I

RE: [EXTERNAL] authentication for Leader/Follower replication

2023-08-14 Thread Oakley, Craig (NIH/NLM/NCBI) [C]
Thanks: the "-Dsolr.allowPaths=/netmnt/" did not suffice, but after SOLR_SECURITY_MANAGER_ENABLED=false it worked (both with incremental=false and incremental=true) -Original Message- From: Jan Høydahl Sent: Monday, August 14, 2023 3:12 AM To: users@solr.apache.org Subject: Re: [EXTERN

Re: [EXTERNAL] authentication for Leader/Follower replication

2023-08-14 Thread Kevin Risden
The issue w/ allowPaths was reported here: https://issues.apache.org/jira/browse/SOLR-16905 Basically allowPaths was not being reflected in the security manager policy. You can update security.policy yourself or disable security manager as you found. Kevin Risden On Mon, Aug 14, 2023 at 10:24 A

doc values type=SORTED to inconsistent type=NONE

2023-08-14 Thread rajani m
Hi Solr Users, There is a sortable text field that has docValues enabled by default, tried to disable it by setting "docValues=false" in the schema and indexing(update) the same docs, but

Re: doc values type=SORTED to inconsistent type=NONE

2023-08-14 Thread mtn search
I believe I have run into the same error when someone made a change to docvalues setting. My understanding, and what we did, the only solution is to delete the index and recreate. https://solr.apache.org/guide/solr/latest/indexing-guide/reindexing.html Matt On Mon, Aug 14, 2023 at 2:23 PM raja

Re: doc values type=SORTED to inconsistent type=NONE

2023-08-14 Thread Tomás Fernández Löbbe
Changing indexed=true/false or docValues=true/false on an existing field is no longer allowed as of Solr 9 due to changes in Lucene[1]. You need to reindex into a new index or at least a new field. Tomás [1] https://issues.apache.org/jira/browse/LUCENE-9334 On Mon, Aug 14, 2023 at 1:33 PM mtn s