You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2016/01/30 00:36:32 UTC

mesos git commit: Increased the default registry_store_timeout.

Repository: mesos
Updated Branches:
  refs/heads/master 691776ce7 -> ae22fb0a5


Increased the default registry_store_timeout.

In order to be more tolerant of disk bandwidth interference
on the master machines, we should increase the default
registry store timeout. As it stands, the master is prone
to induce a failover when the master is temporarily starved
of disk bandwidth.

Review: https://reviews.apache.org/r/42980


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

Branch: refs/heads/master
Commit: ae22fb0a56e39a1de0a21d349161673aa64a793d
Parents: 691776c
Author: Benjamin Mahler <be...@gmail.com>
Authored: Fri Jan 29 14:44:43 2016 -0800
Committer: Benjamin Mahler <be...@gmail.com>
Committed: Fri Jan 29 14:46:19 2016 -0800

----------------------------------------------------------------------
 docs/configuration.md | 2 +-
 src/master/flags.cpp  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/ae22fb0a/docs/configuration.md
----------------------------------------------------------------------
diff --git a/docs/configuration.md b/docs/configuration.md
index 2f0628a..4b5a394 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -661,7 +661,7 @@ after which the operation is considered a failure. (default: 1mins)
   </td>
   <td>
 Duration of time to wait in order to store data in the registry
-after which the operation is considered a failure. (default: 5secs)
+after which the operation is considered a failure. (default: 20secs)
   </td>
 </tr>
 <tr>

http://git-wip-us.apache.org/repos/asf/mesos/blob/ae22fb0a/src/master/flags.cpp
----------------------------------------------------------------------
diff --git a/src/master/flags.cpp b/src/master/flags.cpp
index 4a0e210..60e085b 100644
--- a/src/master/flags.cpp
+++ b/src/master/flags.cpp
@@ -100,7 +100,7 @@ mesos::internal::master::Flags::Flags()
       "registry_store_timeout",
       "Duration of time to wait in order to store data in the registry\n"
       "after which the operation is considered a failure.",
-      Seconds(5));
+      Seconds(20));
 
   add(&Flags::log_auto_initialize,
       "log_auto_initialize",