You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ab...@apache.org on 2017/06/13 17:09:08 UTC

lucene-solr:branch_6x: SOLR-10704 Update the ref guide.

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x 98e260dd1 -> 9612e3185


SOLR-10704 Update the ref guide.


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

Branch: refs/heads/branch_6x
Commit: 9612e318568e48ea187700accc1f6e88b1afea43
Parents: 98e260d
Author: Andrzej Bialecki <ab...@apache.org>
Authored: Tue Jun 13 18:53:04 2017 +0200
Committer: Andrzej Bialecki <ab...@apache.org>
Committed: Tue Jun 13 19:08:52 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/9612e318/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 e4476c6..645f3a2 100644
--- a/solr/solr-ref-guide/src/collections-api.adoc
+++ b/solr/solr-ref-guide/src/collections-api.adoc
@@ -1878,7 +1878,7 @@ Deletes all replicas of all collections in that node. Please note that the node
 [[CollectionsAPI-replacenode]]
 == REPLACENODE: Move All Replicas in a Node to Another
 
-This command recreates replicas in the source node to the target node. After each replica is copied, the replicas in the source node are deleted.
+This command recreates replicas in the source node to the target node. After each replica is copied, the replicas in the source node are deleted. For source replicas that are also shard leaders the operation will wait for "timeout" seconds to make sure there's an active replica that can become a leader (either an existing replica becoming a leader or the new replica completing the recovery and becoming a leader).
 
 `/admin/collections?action=REPLACENODE&source=_source-node_&target=_target-node_`
 
@@ -1896,6 +1896,7 @@ This command recreates replicas in the source node to the target node. After eac
 |target |string |Yes |The target node
 |parallel |boolean |No |default=false. if this flag is set to true, all replicas are created inseparatee threads. Keep in mind that this can lead to very high network and disk I/O if the replicas have very large indices.
 |async |string |No |Request ID to track this action which will be <<CollectionsAPI-async,processed asynchronously>>.
+|timeout |int |No |default is 300. Timeout in seconds to wait until new replicas are created, and until leader replicas are fully recovered.
 |===
 
 [IMPORTANT]