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 SolrCloud collection, then ADDREPLICA to build out the collection.
There's no way to say "reconcile this arbitrary index I built with stand-alone with my SolrCloud collection", so it'a all manual. Best, Erick On Mon, Aug 20, 2018 at 12:38 PM, Sushant Vengurlekar <svengurle...@curvolabs.com> wrote: > I have a question regarding updating the indexes on solrcloud with indexes > from a standalone solr server. We have a solrcloud which is running. We > have couple of cores on that standalone solr instance which are also > present on the solrcloud as collections. I need to bring in updated indexes > from this standalone solr instance to cloud. > > Does anyone have an idea on what steps need to be taken. > > Thank you