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

Re: Could not find collection when upgrading to Solr 7

2018-02-24 Thread Marvin Bredal Lillehaug
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, ready for indexing and querying locally. The applications

Re: Could not find collection when upgrading to Solr 7

2018-02-24 Thread Shawn Heisey
On 2/24/2018 3:13 AM, Marvin Bredal Lillehaug wrote: We have a multicore Solr-instance that currently is running version 6.6.2. For local development we run ./solr start -v -d $solrDir/server -h localhost -p $SOLR_PORT -c -f -s $solrHomeDir -a "-Dbootstrap_conf=true -Djetty.host=localhost" -m