Re: Question about updating indexes on solrcloud with single instance solr

2018-08-20 Thread Erick Erickson
There are two choices: 1> shut down all three replicas and copy the index to each one then start them up. 2> DELETEREPLICA on two of them, update the remaining one, then issue an ADDREPLICA to get the other two back. Of the two, I'd go with <2>. When you ADDREPLICA Solr will take care of copying

Re: Question about updating indexes on solrcloud with single instance solr

2018-08-20 Thread Sushant Vengurlekar
thanks for the reply Eric I have one shard per replica but I have 3 replicas on the solrcloud. So how do I update from the standalone solr core to these 3 replicas On Mon, Aug 20, 2018 at 2:43 PM Erick Erickson wrote: > Assuming that your stand-alone indexes are a single core (i.e. not > sharde

Re: Question about updating indexes on solrcloud with single instance solr

2018-08-20 Thread Erick Erickson
Assuming that your stand-alone indexes are a single core (i.e. not sharded), then just create a single-shard collection with the appropriate schema. From there I'd shut my Solr instance down, copy the index files "to the right place" and fire it all back up. I'd do this with a single-replica SolrCl