You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2017/12/08 08:32:16 UTC

lucene-solr:branch_7_0: SOLR-9743: documentation

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7_0 1f4134971 -> e3d379af1


SOLR-9743: documentation


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/e3d379af
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/e3d379af
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/e3d379af

Branch: refs/heads/branch_7_0
Commit: e3d379af1b26c6d4341209a22370bcd9fe4ffabc
Parents: 1f41349
Author: Noble Paul <no...@apache.org>
Authored: Fri Dec 8 19:30:57 2017 +1100
Committer: Noble Paul <no...@apache.org>
Committed: Fri Dec 8 19:31:56 2017 +1100

----------------------------------------------------------------------
 solr/solr-ref-guide/src/collections-api.adoc | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/e3d379af/solr/solr-ref-guide/src/collections-api.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/collections-api.adoc b/solr/solr-ref-guide/src/collections-api.adoc
index b7fa7f2..1732c2a 100644
--- a/solr/solr-ref-guide/src/collections-api.adoc
+++ b/solr/solr-ref-guide/src/collections-api.adoc
@@ -1904,6 +1904,17 @@ The name of the destination node. This parameter is required.
 `async`::
 Request ID to track this action which will be <<Asynchronous Calls,processed asynchronously>>.
 
+[[utilizenode]]
+== UTILIZENODE: Utilize a new node
+
+This command can be used to move some replicas from the existing nodes to a new node or lightly loaded node and reduce the load on them. This uses your autoscaling policies and preferences to identify which replica needs to be moved. It tries to fix any policy violations first and then it tries to move some load off of the most loaded nodes according to the preferences.
+
+`/admin/collections?action=UTILIZENODE&node=nodeName`
+=== UTILIZENODE Parameters
+
+`node`:: The name of the node that needs to be utilized. This parameter is required
+
+
 == Asynchronous Calls
 
 Since some collection API calls can be long running tasks (such as SPLITSHARD), you can optionally have the calls run asynchronously. Specifying `async=<request-id>` enables you to make an asynchronous call, the status of which can be requested using the <<requeststatus,REQUESTSTATUS>> call at any time.