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/17 21:20:25 UTC

mesos git commit: Updated website for 0.28.0 release.

Repository: mesos
Updated Branches:
  refs/heads/master 22a1f4d9b -> c3be44603


Updated website for 0.28.0 release.


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

Branch: refs/heads/master
Commit: c3be44603386548b497eb4100ad213c71369c392
Parents: 22a1f4d
Author: Vinod Kone <vi...@gmail.com>
Authored: Thu Mar 17 13:16:55 2016 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Thu Mar 17 13:20:17 2016 -0700

----------------------------------------------------------------------
 docs/getting-started.md                         |  4 +-
 .../blog/2016-03-17-mesos-0-28-0-released.md    | 82 ++++++++++++++++++++
 site/source/downloads.html.md                   | 25 +++---
 site/source/index.html.md                       |  4 +-
 4 files changed, 101 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/c3be4460/docs/getting-started.md
----------------------------------------------------------------------
diff --git a/docs/getting-started.md b/docs/getting-started.md
index 05fb7de..74361ff 100644
--- a/docs/getting-started.md
+++ b/docs/getting-started.md
@@ -11,8 +11,8 @@ There are different ways you can get Mesos:
 
 1\. Download the latest stable release from [Apache](http://mesos.apache.org/downloads/) (***Recommended***)
 
-    $ wget http://www.apache.org/dist/mesos/0.27.2/mesos-0.27.2.tar.gz
-    $ tar -zxf mesos-0.27.2.tar.gz
+    $ wget http://www.apache.org/dist/mesos/0.28.0/mesos-0.28.0.tar.gz
+    $ tar -zxf mesos-0.28.0.tar.gz
 
 2\. Clone the Mesos git [repository](https://git-wip-us.apache.org/repos/asf/mesos.git) (***Advanced Users Only***)
 

http://git-wip-us.apache.org/repos/asf/mesos/blob/c3be4460/site/source/blog/2016-03-17-mesos-0-28-0-released.md
----------------------------------------------------------------------
diff --git a/site/source/blog/2016-03-17-mesos-0-28-0-released.md b/site/source/blog/2016-03-17-mesos-0-28-0-released.md
new file mode 100644
index 0000000..a0afdca
--- /dev/null
+++ b/site/source/blog/2016-03-17-mesos-0-28-0-released.md
@@ -0,0 +1,82 @@
+---
+layout: post
+title: Apache Mesos 0.28.0 Released
+permalink: /blog/mesos-0-28-0-released/
+published: true
+post_author:
+  display_name: Vinod Kone
+  twitter: vinodkone
+tags: Release
+---
+
+The latest Mesos release, 0.28.0, is now available for [download](http://mesos.apache.org/downloads).
+
+This release includes the following features and improvements:
+
+  * [MESOS-4343] - 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. Please refer to
+    docs/mesos-containerizer.md for more details.
+
+  * [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.
+
+  * [MESOS-4479] - Reserved resources can now optionally include "labels".
+    Labels are a set of key-value pairs that can be used to associate metadata
+    with a reserved resource. For example, frameworks can use this feature to
+    distinguish between two reservations for the same role at the same agent
+    that are intended for different purposes.
+
+  * [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) or rkt. The isolation of the containers is done using
+    isolators. Please refer to docs/container-image.md for currently supported
+    features and limitations.
+
+  * [MESOS-4793] - **Experimental** support for v1 Executor HTTP API. This
+    allows executors to send HTTP requests to the /api/v1/executor agent
+    endpoint without the need for an executor driver. Please refer to
+    docs/executor-http-api.md for more details.
+
+  * [MESOS-4370] Added support for service discovery of Docker containers that
+    use Docker Remote API v1.21.
+
+Additional API Changes:
+
+  * [MESOS-4066] - Agent should not return partial state when a request is made to /state endpoint during recovery.
+  * [MESOS-4547] - Introduce TASK_KILLING state.
+  * [MESOS-4712] - Remove 'force' field from the Subscribe Call in v1 Scheduler API.
+  * [MESOS-4591] - Change the object of ReserveResources and CreateVolume ACLs to `roles`.
+  * [MESOS-3583] - Add stream IDs for HTTP schedulers.
+  * [MESOS-4427] - Ensure ip_address in state.json (from NetworkInfo) is valid
+
+
+Furthermore, several bugfixes and improvements made it into this release.
+For full release notes with all features and bug fixes, please refer to the [CHANGELOG](https://git-wip-us.apache.org/repos/asf?p=mesos.git;a=blob_plain;f=CHANGELOG;hb=0.28.0).
+
+### Upgrades
+
+Rolling upgrades from a Mesos 0.27.0 cluster to Mesos 0.28.0 are straightforward. There are just some minor, backwards compatible deprecations.
+Please refer to the [upgrade guide](http://mesos.apache.org/documentation/latest/upgrades/) for detailed information on upgrading to Mesos 0.28.0.
+
+
+### Try it out
+
+We encourage you to try out this release and let us know what you think.
+If you run into any issues, please let us know on the [user mailing list and IRC](https://mesos.apache.org/community).
+
+### Thanks!
+
+Thanks to the 44 contributors who made 0.28.0 possible:
+
+Abhishek Dasgupta,Alex Clemmer,Alex Naparu,Alexander Rojas,Alexander Rukletsov,Anand Mazumdar,Avinash sridharan,Benjamin Bannier,Benjamin Mahler,Bernd Mathiske,Cong Wang,Daniel Pravat,David Forsythe,Diana Arroyo,Disha  Singh,Gilbert Song,Greg Mann,Guangya Liu,Isabel Jimenez,James Peach,Jan Schlicht,Jie Yu,Joerg Schad,Jojy Varghese,Joris Van Remoortere,Joseph Wu,Kapil Arya,Kevin Devroede,Kevin Klues,Klaus Ma,M Lawindi,Michael Browning,Michael Lunøe,Michael Park,Neil Conway,Shuai Lin,Till Toenshoff,Timothy Chen,Vinod Kone,Yong Tang,Yongqiao Wang,Zhiwei Chen,haosdent huang,mlawindi

http://git-wip-us.apache.org/repos/asf/mesos/blob/c3be4460/site/source/downloads.html.md
----------------------------------------------------------------------
diff --git a/site/source/downloads.html.md b/site/source/downloads.html.md
index ceac4cf..941d672 100755
--- a/site/source/downloads.html.md
+++ b/site/source/downloads.html.md
@@ -8,6 +8,8 @@ breadcrumb: Downloads
     <h4>Previous Releases</h4>
 
     <ul>
+      <li><a href="http://archive.apache.org/dist/mesos/0.27.2/">0.27.2</a>
+           (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12334913">Release Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.27.1/">0.27.1</a>
            (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12334748">Release Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.27.0/">0.27.0</a>
@@ -39,23 +41,23 @@ breadcrumb: Downloads
       <li><a href="http://archive.apache.org/dist/mesos/0.20.0/">0.20.0</a>
            (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326835">Release Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.19.1/">0.19.1</a>
-      	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12327173">Release Notes</a>)</li>
+	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12327173">Release Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.19.0/">0.19.0</a>
-      	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326253">Release Notes</a>)</li>
+	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326253">Release Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.18.2/">0.18.2</a>
-      	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326851">Release Notes</a>)</li>
+	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326851">Release Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.18.1/">0.18.1</a>
-      	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326752">Release Notes</a>)</li>
+	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326752">Release Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.18.0/">0.18.0</a>
-      	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326140">Release Notes</a>)</li>
+	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326140">Release Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.17.0/">0.17.0</a>
-      	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12325669">Release Notes</a>)</li>
+	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12325669">Release Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.16.0/">0.16.0</a>
-      	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12325295">Release Notes</a>)</li>
+	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12325295">Release Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.15.0/">0.15.0</a>
-      	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12324901">Release Notes</a>)</li>
+	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12324901">Release Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.14.2/">0.14.2</a>
-      	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12325324">Release Notes</a>)</li>
+	   (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12325324">Release Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.14.1/">0.14.1</a>
            (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12324994">Release Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.14.0/">0.14.0</a>
@@ -78,8 +80,9 @@ breadcrumb: Downloads
   <div class="col-md-8">
     <h1>Download Mesos</h1>
       <p>Download the most recent stable release:
-	      <a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.27.2/">0.27.2</a>
-        (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12334913">Release Notes</a>)
+	      <a
+href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.28.0/">0.28.0</a>
+        (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12334661">Release Notes</a>)
       </p>
 
       <h4>Getting the code via source control</h4>

http://git-wip-us.apache.org/repos/asf/mesos/blob/c3be4460/site/source/index.html.md
----------------------------------------------------------------------
diff --git a/site/source/index.html.md b/site/source/index.html.md
index df9e5aa..b5aa2b2 100755
--- a/site/source/index.html.md
+++ b/site/source/index.html.md
@@ -7,7 +7,7 @@ title: Apache Mesos
     <h1>Program against your datacenter like it’s a single pool of resources</h1>
     <p class="lead">Apache Mesos abstracts CPU, memory, storage, and other compute resources away from machines (physical or virtual), enabling fault-tolerant and elastic distributed systems to easily be built and run effectively.</p>
 
-		<p> <a href="downloads/"><span class="glyphicon glyphicon-download"></span> Download Mesos 0.27.2</a> or learn how to <a href="gettingstarted/">get started</a></p>
+		<p> <a href="downloads/"><span class="glyphicon glyphicon-download"></span> Download Mesos 0.28.0</a> or learn how to <a href="gettingstarted/">get started</a></p>
 	</div>
 </div>
 
@@ -32,6 +32,8 @@ title: Apache Mesos
   <div class="col-md-5">
     <h3>News</h3>
       <ul>
+      <li><em>March 7, 2016</em> - Mesos 0.28.0 is released! See the <a href="https://git-wip-us.apache.org/repos/asf?p=mesos.git;a=blob_plain;f=CHANGELOG;hb=0.28.0">CHANGELOG</a> and <a href="/blog/mesos-0-28-0-released/">blog post</a> for details.</li>
+      <li><em>February 22, 2016</em> - Mesos 0.27.1 is released! See the <a href="https://git-wip-us.apache.org/repos/asf?p=mesos.git;a=blob_plain;f=CHANGELOG;hb=0.27.1">CHANGELOG</a> and <a href="/blog/mesos-0-27-1-released/">blog post</a> for details.</li>
       <li><em>March 7, 2016</em> - Mesos 0.27.2 is released! See the <a href="https://git-wip-us.apache.org/repos/asf?p=mesos.git;a=blob_plain;f=CHANGELOG;hb=0.27.2">CHANGELOG</a> and <a href="/blog/mesos-0-27-2-released/">blog post</a> for details.</li>
       <li><em>February 22, 2016</em> - Mesos 0.27.1 is released! See the <a href="https://git-wip-us.apache.org/repos/asf?p=mesos.git;a=blob_plain;f=CHANGELOG;hb=0.27.1">CHANGELOG</a> and <a href="/blog/mesos-0-27-1-released/">blog post</a> for details.</li>
       <li><em>February 12, 2016</em> - MesosCon 2016 CFP is now open!  See the <a href="/blog/mesoscon-2016-cfp-is-now-open/">blog post</a> for details.</li>