You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2020/01/17 16:03:31 UTC

[couchdb-documentation] branch master updated: Update resharding config section (#478)

This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-documentation.git


The following commit(s) were added to refs/heads/master by this push:
     new eaba68e  Update resharding config section (#478)
eaba68e is described below

commit eaba68eaf49b49f2e074496d47b9809fbf0a5479
Author: Nick Vatamaniuc <ni...@users.noreply.github.com>
AuthorDate: Fri Jan 17 11:03:23 2020 -0500

    Update resharding config section (#478)
    
    Some entries were stale and others were missing
---
 src/config/resharding.rst | 28 +++++++++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

diff --git a/src/config/resharding.rst b/src/config/resharding.rst
index de91011..b20e85f 100644
--- a/src/config/resharding.rst
+++ b/src/config/resharding.rst
@@ -32,7 +32,15 @@ Resharding Configuration
         will start to fail with the ``max_jobs_exceeded`` error::
 
              [reshard]
-             max_jobs = 25
+             max_jobs = 48
+
+    .. config:option:: max_history
+
+        Each resharding job maintains a timestamped event log. This setting
+        limits the maximum size of that log::
+
+             [reshard]
+             max_history = 20
 
     .. config:option:: max_retries
 
@@ -77,3 +85,21 @@ Resharding Configuration
 
             [reshard]
             source_close_timeout_sec = 600
+
+    .. config:option:: require_node_param
+
+        Require users to specify a ``node`` parameter when creating resharding
+        jobs. This can be used as a safety check to avoid inadvertently
+        starting too many resharding jobs by accident::
+
+            [reshard]
+            require_node_param = false
+
+    .. config:option:: require_range_param
+
+        Require users to specify a ``range`` parameter when creating resharding
+        jobs. This can be used as a safety check to avoid inadvertently
+        starting too many resharding jobs by accident::
+
+            [reshard]
+            require_range_param = false