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 2017/09/27 15:35:33 UTC

[couchdb-documentation] branch issue-810 updated (c9de5d7 -> 86849c4)

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

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


    omit c9de5d7  Updated documentation for new replicator retries_per_request value
     new 86849c4  Updated documentation for new replicator retries_per_request value

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (c9de5d7)
            \
             N -- N -- N   refs/heads/issue-810 (86849c4)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
['"commits@couchdb.apache.org" <co...@couchdb.apache.org>'].

[couchdb-documentation] 01/01: Updated documentation for new replicator retries_per_request value

Posted by va...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 86849c4f774ae9fc31238a70a59b41eb11b41709
Author: Nick Vatamaniuc <va...@apache.org>
AuthorDate: Wed Sep 27 10:00:52 2017 -0400

    Updated documentation for new replicator retries_per_request value
    
    The new value is 5 but used to be 10, which makes more sense with the new
    scheduling replicator behavior.
    
    Issue #810
---
 src/config/replicator.rst | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/src/config/replicator.rst b/src/config/replicator.rst
index d1c7436..d25baac 100644
--- a/src/config/replicator.rst
+++ b/src/config/replicator.rst
@@ -103,10 +103,18 @@ Replicator Database Configuration
 
     .. config:option:: retries_per_request
 
-        If a request fails, the replicator will retry it up to N times::
+        .. versionchanged:: 2.1.1
+
+        If a request fails, the replicator will retry it up to N times. The
+        default value for N is 5 (before version 2.1.1 it was 10). The requests
+        are retried with an doubling exponenital backoff starting at 0.25
+        seconds. So by default requests would be retried in 0.25, 0.5, 1, 2, 4
+        second intervals. When number of retires is exhausted, the whole
+        replication job is stopped and will retry again later::
 
             [replicator]
-            retries_per_request = 10
+            retries_per_request = 5
+
 
     .. config:option:: socket_options
 

-- 
To stop receiving notification emails like this one, please contact
"commits@couchdb.apache.org" <co...@couchdb.apache.org>.