Add a replica
Add a replica to a shard in a collection. The node name can be specified if the replica is to be created in a specific node
collection_addreplica(conn, name, shard = NULL, route = NULL, node = NULL, instanceDir = NULL, dataDir = NULL, async = NULL, raw = FALSE, callopts = list(), ...)
conn |
A solrium connection object, see SolrClient |
name |
(character) The name of the core to be created. Required |
shard |
(character) The name of the shard to which replica is to be added.
If |
route |
(character) If the exact shard name is not known, users may pass
the |
node |
(character) The name of the node where the replica should be created |
instanceDir |
(character) The instanceDir for the core that will be created |
dataDir |
(character) The directory in which the core should be created |
async |
(character) Request ID to track this action which will be processed asynchronously |
raw |
(logical) If |
callopts |
curl options passed on to crul::HttpClient |
... |
You can pass in parameters like |
## Not run: (conn <- SolrClient$new()) # create collection if (!conn$collection_exists("foobar")) { conn$collection_create(name = "foobar", numShards = 2) # OR bin/solr create -c foobar } # status conn$collection_clusterstatus()$cluster$collections$foobar # add replica if (!conn$collection_exists("foobar")) { conn$collection_addreplica(name = "foobar", shard = "shard1") } # status again conn$collection_clusterstatus()$cluster$collections$foobar conn$collection_clusterstatus()$cluster$collections$foobar$shards conn$collection_clusterstatus()$cluster$collections$foobar$shards$shard1 ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.