You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ho...@apache.org on 2017/06/14 02:02:59 UTC

[23/35] lucene-solr:jira/SOLR-10834: SOLR-10704 Update the ref guide.

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/cdccbfb9
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/cdccbfb9
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/cdccbfb9

Branch: refs/heads/jira/SOLR-10834
Commit: cdccbfb92f30cc70a3fee4c1b3655b1aaf1acb7a
Parents: 78fcbc0
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 18:53:44 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/cdccbfb9/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 33dcb94..9e71365 100644
--- a/solr/solr-ref-guide/src/collections-api.adoc
+++ b/solr/solr-ref-guide/src/collections-api.adoc
@@ -1887,7 +1887,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_`
 
@@ -1905,6 +1905,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]