Repository: mesos
Updated Branches:
  refs/heads/master 04dd7f32b -> e34ed9602


Added missing registry-related flags to the master config docs.

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


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

Branch: refs/heads/master
Commit: e34ed9602c72b7c72e13fb02cee54e4ddbf4c1b8
Parents: 04dd7f3
Author: Greg Mann <gregorywm...@gmail.com>
Authored: Tue Jan 16 15:11:12 2018 -0800
Committer: Greg Mann <gregorywm...@gmail.com>
Committed: Tue Jan 16 15:26:30 2018 -0800

----------------------------------------------------------------------
 docs/configuration/master.md | 41 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/e34ed960/docs/configuration/master.md
----------------------------------------------------------------------
diff --git a/docs/configuration/master.md b/docs/configuration/master.md
index 3ff97ea..e3cfb24 100644
--- a/docs/configuration/master.md
+++ b/docs/configuration/master.md
@@ -478,6 +478,47 @@ after which the operation is considered a failure. 
(default: 1mins)
 </tr>
 <tr>
   <td>
+    --registry_gc_interval=VALUE
+  </td>
+  <td>
+How often to garbage collect the registry. The current leading
+master will periodically discard information from the registry.
+How long registry state is retained is controlled by other
+parameters (e.g., <code>registry_max_agent_age</code>,
+<code>registry_max_agent_count</code>); this parameter controls
+how often the master will examine the registry to see if data
+should be discarded. (default: 15mins)
+  </td>
+</tr>
+<tr>
+  <td>
+    --registry_max_agent_age=VALUE
+  </td>
+  <td>
+Maximum length of time to store information in the registry about
+agents that are not currently connected to the cluster. This
+information allows frameworks to determine the status of unreachable
+and gone agents. Note that the registry always stores
+information on all connected agents. If there are more than
+<code>registry_max_agent_count</code> partitioned/gone agents, agent
+information may be discarded from the registry sooner than indicated
+by this parameter. (default: 2weeks)
+  </td>
+</tr>
+<tr>
+  <td>
+    --registry_max_agent_count=VALUE
+  </td>
+  <td>
+Maximum number of partitioned/gone agents to store in the
+registry. This information allows frameworks to determine the status
+of disconnected agents. Note that the registry always stores
+information about all connected agents. See also the
+<code>registry_max_agent_age</code> flag. (default: 102400)
+  </td>
+</tr>
+<tr>
+  <td>
     --registry_store_timeout=VALUE
   </td>
   <td>

Reply via email to