On 6/19/2018 11:50 AM, Sushant Vengurlekar wrote:
> I created a solr cloud collection with 2 shards and a replication factor of
> 2. How can I load data into this collection which I have currently stored
> in a core on a standalone solr. I used the conf from this core on
> standalone solr to create
Personally I'd start with a 1-shard, 1-replica collection (i.e. leader-only).
>From there split the shard.
once all that had been done satisfactorily, just use the collections
API ADDREPLICA command to build out your collection to whatever degree
of redundancy you need.
Best,
Erick
On Tue, Jun
I see.
By definition of splitting, the new shards will have the same number of
replicas as the original shard.
You could use the replicationFactor>=2 to ensure that both of your solr nodes
are used.
You could also use the maxShardsPerNode parameter alone or in conjunction with
the replicationFa
Thank you Aroop
After I import the data into the collection from the standalone solr core I
want to split it into 2 shards across 2 nodes that I have. So I will have
to set replicationfactor of 2 & numShards =2 ?
On Tue, Jun 19, 2018 at 12:46 PM Aroop Ganguly
wrote:
> Hi Sushant
>
> replication
Hi Sushant
replicationFactor defaults to 1 and is not mandatory.
numShards is mandatory, where you’d equate it to 1.
Aroop
> On Jun 19, 2018, at 12:29 PM, Sushant Vengurlekar
> wrote:
>
> Thank you Eric.
>
> In the create collection command I need to set the replication factor
> though corre
Thank you Eric.
In the create collection command I need to set the replication factor
though correct?
On Tue, Jun 19, 2018 at 11:14 AM Erick Erickson
wrote:
> Probably the easiest way would be to recreate your collection with 1
> shard. Then copy the index from your standalone setup.
>
> After
Probably the easiest way would be to recreate your collection with 1
shard. Then copy the index from your standalone setup.
After verifying your setup, use the Collections SPLITSHARD command.
Best,
Erick
On Tue, Jun 19, 2018 at 10:50 AM, Sushant Vengurlekar
wrote:
> I created a solr cloud colle
I created a solr cloud collection with 2 shards and a replication factor of
2. How can I load data into this collection which I have currently stored
in a core on a standalone solr. I used the conf from this core on
standalone solr to create the collection on the solrcloud
Thank you