You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ya...@apache.org on 2017/08/21 18:02:11 UTC

mesos git commit: Added MESOS-5116 to the CHANGELOG.

Repository: mesos
Updated Branches:
  refs/heads/master 11ee081ee -> 259c3e653


Added MESOS-5116 to the CHANGELOG.

Added MESOS-5116 (XFS disk isolator support for no-enforce mode) to
the CHANGELOG.

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


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

Branch: refs/heads/master
Commit: 259c3e65360e9ae35d222e47af68cb5e18f36cb3
Parents: 11ee081
Author: James Peach <jp...@apache.org>
Authored: Mon Aug 21 10:59:12 2017 -0700
Committer: Jiang Yan Xu <xu...@apple.com>
Committed: Mon Aug 21 11:01:41 2017 -0700

----------------------------------------------------------------------
 CHANGELOG             | 4 ++++
 docs/configuration.md | 2 +-
 docs/upgrades.md      | 5 +++++
 3 files changed, 10 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/259c3e65/CHANGELOG
----------------------------------------------------------------------
diff --git a/CHANGELOG b/CHANGELOG
index 907623f..303ed8f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -19,6 +19,10 @@ Release Notes - Mesos - Version 1.4.0 (WIP)
 -------------------------------------------
 This release contains the following new features:
 
+  * [MESOS-5116] - The `disk/xfs` isolator now supports the
+    `--enforce_container_disk_quota` flag to efficiently measure disk
+    usage without enforcing usage constraints.
+
   * [MESOS-6223] - Agents are now allowed to recover the agent ID
     after a host reboot. See docs/upgrades.md for details.
 

http://git-wip-us.apache.org/repos/asf/mesos/blob/259c3e65/docs/configuration.md
----------------------------------------------------------------------
diff --git a/docs/configuration.md b/docs/configuration.md
index c149339..9925262 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -1572,7 +1572,7 @@ volumes that each container uses.
   </td>
   <td>
 Whether to enable disk quota enforcement for containers. This flag
-is used for the <code>disk/du</code> isolator. (default: false)
+is used by the <code>disk/du</code> and <code>disk/xfs</code> isolators. (default: false)
   </td>
 </tr>
 <tr>

http://git-wip-us.apache.org/repos/asf/mesos/blob/259c3e65/docs/upgrades.md
----------------------------------------------------------------------
diff --git a/docs/upgrades.md b/docs/upgrades.md
index 349d8a1..febe0c1 100644
--- a/docs/upgrades.md
+++ b/docs/upgrades.md
@@ -51,6 +51,7 @@ We categorize the changes as follows:
       <li>A <a href="#1-4-x-ambient-capabilities">Container capabilities are made ambient if supported</a></li>
       <li>A <a href="#1-4-x-bounding-capabilities">Support for explicit bounding capabilities</a></li>
       <li>C <a href="#1-4-x-agent-recovery">Agent recovery post reboot</a></li>
+      <li>C <a href="#1-4-x-xfs-no-enforce">XFS disk isolator support for not enforcing disk limits</a></li>
     </ul>
   </td>
 
@@ -346,6 +347,10 @@ We categorize the changes as follows:
 
 * The semantics of the optional resource argument passed in `Allocator::updateSlave` was change. While previously the passed value denoted a new amount of oversubscribed (revocable) resources on the agent, it now denotes the new amount of total resources on the agent. This requires custom allocator implementations to update their interpretation of the passed value.
 
+<a name="1-4-x-xfs-no-enforce"></a>
+
+* The XFS Disk Isolator now supports the `--no-enforce_container_disk_quota` option to efficiently measure disk resource usage without enforcing any usage limits.
+
 ## Upgrading from 1.2.x to 1.3.x ##
 
 <a name="1-3-x-disallow-old-agents"></a>