You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2016/03/03 21:18:35 UTC

mesos git commit: Updated CHANGELOG for floating point resource changes.

Repository: mesos
Updated Branches:
  refs/heads/master ee790b940 -> 6009ba8b4


Updated CHANGELOG for floating point resource changes.

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


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

Branch: refs/heads/master
Commit: 6009ba8b4bf952fbec5a8810566d1a081c8d90ca
Parents: ee790b9
Author: Neil Conway <ne...@gmail.com>
Authored: Thu Mar 3 12:18:24 2016 -0800
Committer: Vinod Kone <vi...@gmail.com>
Committed: Thu Mar 3 12:18:24 2016 -0800

----------------------------------------------------------------------
 CHANGELOG | 37 ++++++++++++++++++++++++-------------
 1 file changed, 24 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/6009ba8b/CHANGELOG
----------------------------------------------------------------------
diff --git a/CHANGELOG b/CHANGELOG
index dd84364..4d2a342 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,19 +1,30 @@
 Release Notes - Mesos - Version 0.28.0 (WIP)
 --------------------------------------------
 This release contains:
-  * [MESOS-4343] - We have introduced a new cgroups isolator for enabling the net_cls
-                   subsystem in linux. The cgroups/net_cls isolator allows operators
-                   to provide network performance isolation and network segmentation
-                   for containers within a Mesos cluster. To enable the cgroups/net_cls
-                   isolator, append `cgroups/net_cls` to the `--isolation` flag when
-                   starting the slave. You can find more details about the isolator in
-                   the Apache Mesos documentation page for `Mesos containerizer`.
-  * [MESOS-2840] - Experimental support for container images in Mesos containerizer
-                   (a.k.a. Unified Containerizer). This allows frameworks to launch
-                   Docker/Appc containers using Mesos containerizer without relying on
-                   docker daemon (engine). The isolation of the containers is done
-                   using isolators. Please refer to container-image.md for currently
-                   supported features and limitations.
+  * [MESOS-4343] - We have introduced a new cgroups isolator for enabling the
+    net_cls subsystem in Linux. The cgroups/net_cls isolator allows operators to
+    provide network performance isolation and network segmentation for
+    containers within a Mesos cluster. To enable the cgroups/net_cls isolator,
+    append `cgroups/net_cls` to the `--isolation` flag when starting the
+    slave. You can find more details about the isolator in the Apache Mesos
+    documentation page for `Mesos containerizer`.
+
+  * [MESOS-2840] - Experimental support for container images in Mesos
+    containerizer (a.k.a. Unified Containerizer). This allows frameworks to
+    launch Docker/Appc containers using Mesos containerizer without relying on
+    docker daemon (engine). The isolation of the containers is done using
+    isolators. Please refer to container-image.md for currently supported
+    features and limitations.
+
+  * [MESOS-4687] - The implementation of scalar resource values (e.g., "2.5
+    CPUs") has changed. Mesos now reliably supports resources with up to three
+    decimal digits of precision (e.g., "2.501 CPUs"); resources with more than
+    three decimal digits of precision will be rounded. Internally, resource math
+    is now done using a fixed-point format that supports three decimal digits of
+    precision, and then converted to/from floating point for input and output,
+    respectively. Frameworks that do their own resource math and manipulate
+    fractional resources may observe differences in roundoff error and numerical
+    precision.
 
 ** API Changes:
   * [MESOS-4066] - Agent should not return partial state when a request is made to /state endpoint during recovery.