Description Usage Arguments Examples
View source: R/collection_addrole.R
Assign a role to a given node in the cluster. The only supported role as of 4.7 is 'overseer' . Use this API to dedicate a particular node as Overseer. Invoke it multiple times to add more nodes. This is useful in large clusters where an Overseer is likely to get overloaded . If available, one among the list of nodes which are assigned the 'overseer' role would become the overseer. The system would assign the role to any other node if none of the designated nodes are up and running
1 | collection_addrole(conn, role = "overseer", node, raw = FALSE, ...)
|
conn |
A solrium connection object, see SolrClient |
role |
(character) Required. The name of the role. The only supported role as of now is overseer (set as default). |
node |
(character) Required. The name of the node. It is possible to assign a role even before that node is started. |
raw |
(logical) If |
... |
curl options passed on to crul::HttpClient |
1 2 3 4 5 6 7 8 | ## Not run:
(conn <- SolrClient$new())
# get list of nodes
nodes <- conn$collection_clusterstatus()$cluster$live_nodes
collection_addrole(conn, node = nodes[1])
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.