Community Articles

Find and share helpful community-sourced technical articles.
Labels (2)
avatar
Explorer

Following is a guide to split shards and add replicas for collection "ranger_audits" on SolrCloud , in case the initial ranger_audits is created with only 1 shard 1 replica :

1.Initial ranger_audits was created with only 1 shard and 1 replica and user would like to split the shard to balance load and add more replicas for back up. initial ranger_audits with 1 shard and 1 replica 2. In the web browser, enter URL to split the shard : http://172.25.17.51:6083/solr/admin/collections?action=SPLITSHARD&collection=ranger_audits&shard=sha... , and user shall get a page like User-added image which means the splitting operation is successful. And in the Solr Admin UI, user can see there are two additional shards : User-added image Notice, the original shard1 still exists. This is because splitting a shard will take an existing shard and break it into two pieces which are written to disk as two (new) shards. The original shard will continue to contain the same data as-is but it will start re-routing requests to the new shards. The new shards will have as many replicas as the original shard. A soft commit is automatically issued after splitting a shard so that documents are made visible on sub-shards. An explicit commit (hard or soft) is not necessary after a split operation because the index is automatically persisted to disk during the split operation.

This command allows for seamless splitting and requires no downtime. A shard being split will continue to accept query and indexing requests and will automatically start routing them to the new shards once this operation is complete. This command can only be used for SolrCloud collections created with "numShards" parameter, meaning collections which rely on Solr's hash-based routing mechanism.

The split is performed by dividing the original shard's hash range into two equal partitions and dividing up the documents in the original shard according to the new sub-ranges. 3. Create replicas on a different solr node with the SolrCloud for each new shards : http://172.25.17.51:6083/solr/admin/collections?action=ADDREPLICA&collection=ranger_audits&shard=sha... http://172.25.17.51:6083/solr/admin/collections?action=ADDREPLICA&collection=ranger_audits&shard=sha... User-added image User-added image Notice the original solr node still has "Leader" role for both new shards. This is not all that important to worry about. The additional duties of a leader are pretty minimal. And the leaders will shift around anyway as you restart servers etc.

3,152 Views
0 Kudos