Re: Copy existing index from standalone Solr to Solr cloud

2014-07-30 Thread avgxm
Used the admin/collections?action=SPLITSHARD, to create shard1_0, shard1_1, and then followed this thread http://lucene.472066.n3.nabble.com/How-can-you-move-a-shard-from-one-SolrCloud-node-to-another-td4106815.html to move the shards to the right nodes. Problem solved. -- View this message in

Re: Copy existing index from standalone Solr to Solr cloud

2014-07-29 Thread avgxm
Thanks a lot, Shawn. I have gotten as far as having the core come up per your instructions. Since numShards was set to 1, what is the next step to add more shards? Is it /admin/collections?action=CREATESHARD... or something else? Ultimately, I'd like to have shard1, shard2, shard3, with "router

Copy existing index from standalone Solr to Solr cloud

2014-07-29 Thread avgxm
Is there a correct way to take an existing Solr index (core.properties, conf/, data/ directories from a standalone Solr instance) and copy it over to a Solr cloud, with shards, without having to use import or re-indexing? Does anyone know the proper steps to accomplish this type of a move? The ta