Re: Could not find collection when upgrading to Solr 7

2018-02-25 Thread Marvin Bredal Lillehaug
Ah, didn't get that legacyCloud was related to bootstrap Have a new script working without bootstrapping. Thank you for your input! On Mon, Feb 26, 2018 at 7:36 AM, Shalin Shekhar Mangar < shalinman...@gmail.com> wrote: > Bootstrapping is not broken but the default in Solr 7 is to set the

Re: Could not find collection when upgrading to Solr 7

2018-02-25 Thread Shalin Shekhar Mangar
Bootstrapping is not broken but the default in Solr 7 is to set the cluster property legacyCloud=false which means that bootstrapped cores cannot register new collections automatically anymore. If you want to rely on the old behavior then you need to set the cluster property legacyCloud=true. This

Re: Indexing timeout issues with SolrCloud 7.1

2018-02-25 Thread Erick Erickson
DBQ is something of a heavyweight action. Basically in order to preserve ordering it has to lock out updates while it executes since all docs (which may live on all shards) have to be deleted before subsequent adds of one of the affected docs is processed. In order to do that, things need to be

Re: security authentication API via solrj?

2018-02-25 Thread Shawn Heisey
On 2/25/2018 1:28 PM, Peter Sturge wrote: I was wondering if 7.2.1 solrj had native support for the security/authentication endpoint? I couldn't find anything in the docs about it, but maybe someone has some experience with it? Note: This is about adding/deleting users on a solr instance using

Re: Solr 7. Why UpdateRequestProcessorChain does not take any effect?

2018-02-25 Thread Shawn Heisey
On 2/25/2018 2:10 PM, FiMko wrote: Could you please help, for some reason my custom updateRequestProcessorChain does not take any effect. I am using Solr v.7.2.1 with two nodes. I have the following schema: In my solrconfig.xml I added: I enabled TRACE logging for

Re: Solr 7. Why UpdateRequestProcessorChain does not take any effect?

2018-02-25 Thread FiMko
Also in the logs I can see that my custom "mychain" processor is registered on both nodes: -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Solr 7. Why UpdateRequestProcessorChain does not take any effect?

2018-02-25 Thread FiMko
Hello, Could you please help, for some reason my custom updateRequestProcessorChain does not take any effect. I am using Solr v.7.2.1 with two nodes. I have the following schema: In my solrconfig.xml I added: I enabled TRACE logging for UpdateRequestProcessorChain,

security authentication API via solrj?

2018-02-25 Thread Peter Sturge
Hi, I was wondering if 7.2.1 solrj had native support for the security/authentication endpoint? I couldn't find anything in the docs about it, but maybe someone has some experience with it? Note: This is about adding/deleting users on a solr instance using solrj, not authenticating (that is well

Re: Could not find collection when upgrading to Solr 7

2018-02-25 Thread Marvin Bredal Lillehaug
Thank your for your reply. I will take a look at both the code for bootstrapping, and look at what you are suggesting to determine what to do. On Sun, Feb 25, 2018 at 5:17 PM, Shawn Heisey wrote: > On 2/24/2018 8:05 AM, Marvin Bredal Lillehaug wrote: > >> This is for

Re: Could not find collection when upgrading to Solr 7

2018-02-25 Thread Shawn Heisey
On 2/24/2018 8:05 AM, Marvin Bredal Lillehaug wrote: This is for doing local development and running tests. So starting with embedded zookeeper in SolrCloud mode is intentional. The idea is to just run the script setting up the folder structure for the cores and everything is up and running,