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

asekretenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new 2fbdb30  Added the `--offer_constraints_re2_max*` flags to the 
documentation.
2fbdb30 is described below

commit 2fbdb30a355caeeb1b9e038d9de7f66693180c8a
Author: Andrei Sekretenko <[email protected]>
AuthorDate: Mon Nov 16 16:42:11 2020 +0100

    Added the `--offer_constraints_re2_max*` flags to the documentation.
---
 docs/configuration/master.md | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/docs/configuration/master.md b/docs/configuration/master.md
index 6c68b8b..e8c8442 100644
--- a/docs/configuration/master.md
+++ b/docs/configuration/master.md
@@ -485,6 +485,32 @@ If not set, offers do not timeout.
   </td>
 </tr>
 
+<tr id="offer_constraints_re2_max_mem">
+  <td>
+    --offer_constraints_re2_max_mem=VALUE
+  </td>
+  <td>
+Limit on the memory usage of each RE2 regular expression in
+framework's offer constraints. If `OfferConstraints` contain a regex
+from which a RE2 object cannot be constructed without exceeding this
+limit, then framework's attempt to subscribe or update subscription
+with these `OfferConstraints` will fail. (default: 4KB)
+  </td>
+</tr>
+
+<tr id="offer_constraints_re2_max_program_size">
+  <td>
+    --offer_constraints_re2_max_program_size=VALUE
+  </td>
+  <td>
+Limit on the RE2 program size of each regular expression in
+framework's offer constraints. If `OfferConstraints` contain a regex
+which results in a RE2 object exceeding this limit,
+then framework's attempt to subscribe or update subscription
+with these `OfferConstraints` will fail. (default: 100)
+  </td>
+</tr>
+
 <tr id="publish_per_framework_metrics">
   <td>
     --[no-]publish_per_framework_metrics

Reply via email to