mesos git commit: Windows: Disabled broken benchmarks test.

2018-05-14 Thread andschwa
Repository: mesos
Updated Branches:
  refs/heads/master 73bde5625 -> 44856413f


Windows: Disabled broken benchmarks test.

After updating to Visual Studio 15.7.1, this code no longer compiles.

It errors with:

> benchmarks.cpp(566): error C2276: '&': illegal operation on bound
> member function expression

> benchmarks.cpp(566): note: This diagnostic occurred in the compiler
> generated function 'process::Future
> DispatchProcess::handler(const T &)'

That is, the compiler is (now) complaining that `::handler` in
`DispatchProcess::handler()` is invalid.

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


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

Branch: refs/heads/master
Commit: 44856413fc1099783263b3935ee3c995c9358aff
Parents: 73bde56
Author: Andrew Schwartzmeyer 
Authored: Mon May 14 15:37:35 2018 -0700
Committer: Andrew Schwartzmeyer 
Committed: Mon May 14 15:40:58 2018 -0700

--
 3rdparty/libprocess/src/tests/benchmarks.cpp | 3 +++
 1 file changed, 3 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/mesos/blob/44856413/3rdparty/libprocess/src/tests/benchmarks.cpp
--
diff --git a/3rdparty/libprocess/src/tests/benchmarks.cpp 
b/3rdparty/libprocess/src/tests/benchmarks.cpp
index 1368375..0cdb132 100644
--- a/3rdparty/libprocess/src/tests/benchmarks.cpp
+++ b/3rdparty/libprocess/src/tests/benchmarks.cpp
@@ -495,6 +495,8 @@ TEST(ProcessTest, Process_BENCHMARK_ThroughputPerformance)
 }
 
 
+// TODO(andschwa): Turn this test back on when MESOS-8915 is solved.
+#ifndef __WINDOWS__
 class DispatchProcess : public Process
 {
 public:
@@ -579,6 +581,7 @@ TEST(ProcessTest, Process_BENCHMARK_DispatchDefer)
   DispatchProcess::run("Movable", repeats);
   DispatchProcess::run("Copyable", repeats);
 }
+#endif // __WINDOWS__
 
 
 class ProtobufInstallHandlerBenchmarkProcess



mesos git commit: Added MESOS-8904 to the 1.6.1 CHANGELOG.

2018-05-14 Thread grag
Repository: mesos
Updated Branches:
  refs/heads/master c586699e7 -> 73bde5625


Added MESOS-8904 to the 1.6.1 CHANGELOG.


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

Branch: refs/heads/master
Commit: 73bde56251ea469f7c360e11aa21c987452a738b
Parents: c586699
Author: Greg Mann 
Authored: Mon May 14 22:13:45 2018 +
Committer: Greg Mann 
Committed: Mon May 14 22:18:41 2018 +

--
 CHANGELOG | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/mesos/blob/73bde562/CHANGELOG
--
diff --git a/CHANGELOG b/CHANGELOG
index 0fb4175..8ab553a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -4,6 +4,7 @@ Release Notes - Mesos - Version 1.6.1 (WIP)
 
 ** Bug
   * [MESOS-8786] - CgroupIsolatorProcess accesses subsystem processes directly.
+  * [MESOS-8904] - Master crash when removing quota.
   * [MESOS-8906] - `UriDiskProfileAdaptor` fails to update profile selectors.
 
 



mesos git commit: Windows: Enabled more agent tests.

2018-05-14 Thread andschwa
Repository: mesos
Updated Branches:
  refs/heads/master 9ecd9a4e8 -> c586699e7


Windows: Enabled more agent tests.

These just worked when enabled.

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


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

Branch: refs/heads/master
Commit: c586699e70479d26f68dc016932ba36a3ab15314
Parents: 9ecd9a4
Author: Andrew Schwartzmeyer 
Authored: Mon May 14 14:21:10 2018 -0700
Committer: Andrew Schwartzmeyer 
Committed: Mon May 14 14:21:10 2018 -0700

--
 src/tests/slave_tests.cpp | 14 +-
 1 file changed, 5 insertions(+), 9 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/mesos/blob/c586699e/src/tests/slave_tests.cpp
--
diff --git a/src/tests/slave_tests.cpp b/src/tests/slave_tests.cpp
index 53c9630..65d8605 100644
--- a/src/tests/slave_tests.cpp
+++ b/src/tests/slave_tests.cpp
@@ -1997,9 +1997,7 @@ TEST_F(SlaveTest, GetStateTaskGroupPending)
 
 // This test checks that when a slave is in RECOVERING state it responds
 // to HTTP requests for "/state" endpoint with ServiceUnavailable.
-TEST_F_TEMP_DISABLED_ON_WINDOWS(
-SlaveTest,
-StateEndpointUnavailableDuringRecovery)
+TEST_F(SlaveTest, StateEndpointUnavailableDuringRecovery)
 {
   Try master = StartMaster();
   ASSERT_SOME(master);
@@ -6150,8 +6148,7 @@ TEST_F(SlaveTest, KillAllInitialTasksTerminatesExecutor)
 
 // This test verifies that the executor is shutdown during re-registration if
 // all of its initial tasks could not be delivered.
-TEST_F_TEMP_DISABLED_ON_WINDOWS(SlaveTest,
-AgentFailoverTerminatesExecutorWithNoTask)
+TEST_F(SlaveTest, AgentFailoverTerminatesExecutorWithNoTask)
 {
   // Start a master.
   Try master = StartMaster();
@@ -6410,8 +6407,7 @@ TEST_F(SlaveTest, 
KillAllInitialTasksTerminatesHTTPExecutor)
 //
 // TODO(mzhu): This test could be simplified if we had a test scheduler that
 // provides some basic task launching functionality (see MESOS-8511).
-TEST_F_TEMP_DISABLED_ON_WINDOWS(SlaveTest,
-AgentFailoverTerminatesHTTPExecutorWithNoTask)
+TEST_F(SlaveTest, AgentFailoverTerminatesHTTPExecutorWithNoTask)
 {
   Try master = StartMaster();
   ASSERT_SOME(master);
@@ -10652,7 +10648,7 @@ TEST_F(SlaveTest, ResourceProviderSubscribe)
 // This test checks that before a workload (executor or task) is
 // launched, all resources from resoruce providers nended to run the
 // current set of workloads are properly published.
-TEST_F_TEMP_DISABLED_ON_WINDOWS(SlaveTest, ResourceProviderPublishAll)
+TEST_F(SlaveTest, ResourceProviderPublishAll)
 {
   // Start an agent and a master.
   Try master = StartMaster();
@@ -10755,7 +10751,7 @@ TEST_F_TEMP_DISABLED_ON_WINDOWS(SlaveTest, 
ResourceProviderPublishAll)
 {LAUNCH({createTask(
 offers->at(0).slave_id(),
 Resources(offers->at(0).resources()).reserved(framework.roles(0)),
-createCommandInfo("sleep 1000"))})},
+createCommandInfo(SLEEP_COMMAND(1000)))})},
 filters);
 
 AWAIT_READY(publish);



mesos git commit: Windows: Ported the rest of `path_tests.cpp`.

2018-05-14 Thread andschwa
Repository: mesos
Updated Branches:
  refs/heads/master 729ec6203 -> 9ecd9a4e8


Windows: Ported the rest of `path_tests.cpp`.

This port does not attempt to use `path::join()` to avoid duplicated
test logic since that function strips the path separator from its
arguments, thus making it difficult to correctly construct a path like
`a//b/`. Instead, a semi-programatical approach was taken to duplicate
the POSIX paths and then replace `/` with `\\`.

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


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

Branch: refs/heads/master
Commit: 9ecd9a4e86c05220803dd3cba472d3ccc5fe994f
Parents: 729ec62
Author: Andrew Schwartzmeyer 
Authored: Mon May 14 14:20:04 2018 -0700
Committer: Andrew Schwartzmeyer 
Committed: Mon May 14 14:20:04 2018 -0700

--
 3rdparty/stout/tests/path_tests.cpp | 134 +--
 1 file changed, 128 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/mesos/blob/9ecd9a4e/3rdparty/stout/tests/path_tests.cpp
--
diff --git a/3rdparty/stout/tests/path_tests.cpp 
b/3rdparty/stout/tests/path_tests.cpp
index 433a6c6..452865b 100644
--- a/3rdparty/stout/tests/path_tests.cpp
+++ b/3rdparty/stout/tests/path_tests.cpp
@@ -31,65 +31,123 @@ using std::vector;
 
 
 // Test many corner cases of Path::basename.
-TEST_TEMP_DISABLED_ON_WINDOWS(PathTest, Basename)
+TEST(PathTest, Basename)
 {
   // Empty path check.
   EXPECT_EQ(".", Path("").basename());
 
   // Check common path patterns.
+#ifdef __WINDOWS__
+  EXPECT_EQ("\\", Path("\\").basename());
+#else
   EXPECT_EQ("/", Path("/").basename());
+#endif // __WINDOWS__
   EXPECT_EQ(".", Path(".").basename());
   EXPECT_EQ("..", Path("..").basename());
 
   EXPECT_EQ("a", Path("a").basename());
+#ifdef __WINDOWS__
+  EXPECT_EQ("b", Path("a\\b").basename());
+  EXPECT_EQ("c", Path("a\\b\\c").basename());
+#else
   EXPECT_EQ("b", Path("a/b").basename());
   EXPECT_EQ("c", Path("a/b/c").basename());
+#endif // __WINDOWS__
 
   // Check leading slashes get cleaned up properly.
+#ifdef __WINDOWS__
+  EXPECT_EQ("a", Path("\\a").basename());
+  EXPECT_EQ("a", Path("a").basename());
+  EXPECT_EQ("a", Path("\\a\\").basename());
+  EXPECT_EQ("c", Path("\\a\\b\\c").basename());
+  EXPECT_EQ("b", Path("\\a\\b").basename());
+  EXPECT_EQ("b", Path("ab").basename());
+#else
   EXPECT_EQ("a", Path("/a").basename());
   EXPECT_EQ("a", Path("//a").basename());
   EXPECT_EQ("a", Path("/a/").basename());
   EXPECT_EQ("c", Path("/a/b/c").basename());
   EXPECT_EQ("b", Path("/a/b").basename());
   EXPECT_EQ("b", Path("//a//b").basename());
+#endif // __WINDOWS__
 
   // Check trailing slashes get cleaned up properly.
+#ifdef __WINDOWS__
+  EXPECT_EQ("a", Path("a\\").basename());
+  EXPECT_EQ("c", Path("\\a\\b\\c").basename());
+  EXPECT_EQ("c", Path("\\a\\b\\c\\").basename());
+  EXPECT_EQ("\\", Path("").basename());
+  EXPECT_EQ("\\", Path("\\").basename());
+#else
   EXPECT_EQ("a", Path("a/").basename());
   EXPECT_EQ("c", Path("/a/b/c//").basename());
   EXPECT_EQ("c", Path("/a/b/c///").basename());
   EXPECT_EQ("/", Path("//").basename());
   EXPECT_EQ("/", Path("///").basename());
+#endif // __WINDOWS__
 }
 
 
 // Test many corner cases of Path::dirname.
-TEST_TEMP_DISABLED_ON_WINDOWS(PathTest, Dirname)
+TEST(PathTest, Dirname)
 {
   // Empty path check.
   EXPECT_EQ(".", Path("").dirname());
 
   // Check common path patterns.
+#ifdef __WINDOWS__
+  EXPECT_EQ("\\", Path("\\").dirname());
+#else
   EXPECT_EQ("/", Path("/").dirname());
+#endif // __WINDOWS__
   EXPECT_EQ(".", Path(".").dirname());
   EXPECT_EQ(".", Path("..").dirname());
 
   EXPECT_EQ(".", Path("a").dirname());
+#ifdef __WINDOWS__
+  EXPECT_EQ("a", Path("a\\b").dirname());
+  EXPECT_EQ("a\\b", Path("a\\b\\c\\").dirname());
+#else
   EXPECT_EQ("a", Path("a/b").dirname());
   EXPECT_EQ("a/b", Path("a/b/c/").dirname());
+#endif // __WINDOWS__
 
   // Check leading slashes get cleaned up properly.
+#ifdef __WINDOWS__
+  EXPECT_EQ("\\", Path("\\a").dirname());
+  EXPECT_EQ("\\", Path("a").dirname());
+  EXPECT_EQ("\\", Path("\\a\\").dirname());
+  EXPECT_EQ("\\a", Path("\\a\\b").dirname());
+  EXPECT_EQ("a", Path("ab").dirname());
+  EXPECT_EQ("\\a\\b", Path("\\a\\b\\c").dirname());
+#else
   EXPECT_EQ("/", Path("/a").dirname());
   EXPECT_EQ("/", Path("//a").dirname());
   EXPECT_EQ("/", Path("/a/").dirname());
   EXPECT_EQ("/a", Path("/a/b").dirname());
   EXPECT_EQ("//a", Path("//a//b").dirname());
   EXPECT_EQ("/a/b", 

mesos git commit: Added more diagnostic info for a CHECK.

2018-05-14 Thread yan
Repository: mesos
Updated Branches:
  refs/heads/master 20c3c34b0 -> 729ec6203


Added more diagnostic info for a CHECK.

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


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

Branch: refs/heads/master
Commit: 729ec62035d9c757d920913af4ea4169f1d0a143
Parents: 20c3c34
Author: Jiang Yan Xu 
Authored: Sat May 12 13:36:02 2018 -0700
Committer: Jiang Yan Xu 
Committed: Mon May 14 10:25:51 2018 -0700

--
 src/master/allocator/mesos/hierarchical.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/mesos/blob/729ec620/src/master/allocator/mesos/hierarchical.cpp
--
diff --git a/src/master/allocator/mesos/hierarchical.cpp 
b/src/master/allocator/mesos/hierarchical.cpp
index c221999..b558228 100644
--- a/src/master/allocator/mesos/hierarchical.cpp
+++ b/src/master/allocator/mesos/hierarchical.cpp
@@ -1020,7 +1020,9 @@ void HierarchicalAllocatorProcess::updateInverseOffer(
   Framework& framework = frameworks.at(frameworkId);
   Slave& slave = slaves.at(slaveId);
 
-  CHECK(slave.maintenance.isSome());
+  CHECK(slave.maintenance.isSome())
+<< "Agent " << slaveId
+<< " (" << slave.info.hostname() << ") should have maintenance scheduled";
 
   // NOTE: We currently implement maintenance in the allocator to be able to
   // leverage state and features such as the FrameworkSorter and OfferFilter.



mesos git commit: Fixed a crash when metrics race with quota removal.

2018-05-14 Thread grag
Repository: mesos
Updated Branches:
  refs/heads/master 90ce79767 -> 20c3c34b0


Fixed a crash when metrics race with quota removal.

This patch addresses a race condition in which the removal of
a role from the allocator's quota sorter races with execution
of a callback tied to a `PullGauge`. The gauge's callback
assumed that the role would be present in the sorter, but it's
possible for the role to be removed before the callback is
executed.

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


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

Branch: refs/heads/master
Commit: 20c3c34b08ade3b9cf93d55c1f81c0413eb268c4
Parents: 90ce797
Author: Greg Mann 
Authored: Mon May 14 09:21:26 2018 -0700
Committer: Greg Mann 
Committed: Mon May 14 09:21:29 2018 -0700

--
 src/master/allocator/mesos/hierarchical.cpp | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/mesos/blob/20c3c34b/src/master/allocator/mesos/hierarchical.cpp
--
diff --git a/src/master/allocator/mesos/hierarchical.cpp 
b/src/master/allocator/mesos/hierarchical.cpp
index 1000968..c221999 100644
--- a/src/master/allocator/mesos/hierarchical.cpp
+++ b/src/master/allocator/mesos/hierarchical.cpp
@@ -2512,8 +2512,14 @@ double HierarchicalAllocatorProcess::_quota_allocated(
 const string& role,
 const string& resource)
 {
+  if (!roleSorter->contains(role)) {
+// This can occur when execution of this callback races with removal of the
+// metric for a role which does not have any associated frameworks.
+return 0.;
+  }
+
   Option used =
-quotaRoleSorter->allocationScalarQuantities(role)
+roleSorter->allocationScalarQuantities(role)
   .get(resource);
 
   return used.isSome() ? used->value() : 0;



[1/2] mesos-site git commit: Updated the website built from mesos SHA: 90ce797.

2018-05-14 Thread git-site-role
Repository: mesos-site
Updated Branches:
  refs/heads/asf-site 3977834cc -> 5f701e183


http://git-wip-us.apache.org/repos/asf/mesos-site/blob/5f701e18/content/sitemap.xml
--
diff --git a/content/sitemap.xml b/content/sitemap.xml
index e1e91f7..a10043e 100644
--- a/content/sitemap.xml
+++ b/content/sitemap.xml
@@ -2,18334 +2,18334 @@
 http://www.sitemaps.org/schemas/sitemap/0.9;>
   
 http://mesos.apache.org/downloads/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 
http://mesos.apache.org/documentation/latest/fetcher-cache-internals/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/allocation-module/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 
http://mesos.apache.org/documentation/latest/api-client-libraries/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 
http://mesos.apache.org/documentation/latest/attributes-resources/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/reconciliation/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/architecture/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/operator-http-api/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 
http://mesos.apache.org/documentation/latest/advanced-contribution/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 
http://mesos.apache.org/documentation/latest/mesos-containerizer/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/fault-domains/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/versioning/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 
http://mesos.apache.org/documentation/latest/framework-rate-limiting/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/containerizers/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/shared-resources/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/oversubscription/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/maintenance/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/developer-guide/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 
http://mesos.apache.org/documentation/latest/markdown-style-guide/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/operational-guide/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/fetcher/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/frameworks/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/reporting-an-issue/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/configuration/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/cmake/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/upgrades/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/scheduler-http-api/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/task-state-reasons/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 
http://mesos.apache.org/documentation/latest/nested-container-and-task-group/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/secrets/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/authentication/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 http://mesos.apache.org/documentation/latest/roles/
-2018-05-11T00:00:00+00:00
+2018-05-14T00:00:00+00:00
   
   
 

[2/2] mesos-site git commit: Updated the website built from mesos SHA: 90ce797.

2018-05-14 Thread git-site-role
Updated the website built from mesos SHA: 90ce797.


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

Branch: refs/heads/asf-site
Commit: 5f701e18321dbb0edd17a03e2cc0babaa1191f10
Parents: 3977834
Author: jenkins 
Authored: Mon May 14 16:31:56 2018 +
Committer: jenkins 
Committed: Mon May 14 16:31:56 2018 +

--
 content/sitemap.xml | 9166 +++---
 1 file changed, 4583 insertions(+), 4583 deletions(-)
--




mesos git commit: Added operation feedback to the list of experimental features.

2018-05-14 Thread grag
Repository: mesos
Updated Branches:
  refs/heads/1.6.x 03619cb39 -> 9a30d4ebf


Added operation feedback to the list of experimental features.


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

Branch: refs/heads/1.6.x
Commit: 9a30d4ebf280d709f13078111200992710854576
Parents: 03619cb
Author: Greg Mann 
Authored: Mon May 14 09:06:21 2018 -0700
Committer: Greg Mann 
Committed: Mon May 14 09:08:16 2018 -0700

--
 CHANGELOG | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/mesos/blob/9a30d4eb/CHANGELOG
--
diff --git a/CHANGELOG b/CHANGELOG
index aef4e5c..4b95044 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -21,9 +21,10 @@ This release contains the following new features:
   * [MESOS-7944] - **Experimental** Added a new `MemoryProfiler` class to
 libprocess to aid in debugging memory issues.
 
-  * [MESOS-8054] - Schedulers can now receive feedback about offer operations
-which operate on resources managed by resource providers. In the future,
-this feature will be extended to operations on agent default resources.
+  * [MESOS-8054] - **Experimental** Schedulers can now receive feedback about
+offer operations which operate on resources managed by resource providers.
+In the future, this feature will be extended to operations on agent default
+resources.
 
   * [MESOS-8534] - **Experimental** A nested container is now allowed
 to join a separate CNI network than its parent container.
@@ -122,6 +123,7 @@ All Experimental Features:
   * [MESOS-5931] - Support auto backend in Mesos Containerizer.
   * [MESOS-6014] - Added port mapping CNI plugin.
   * [MESOS-7944] - Libprocess `MemoryProfiler`.
+  * [MESOS-8054] - Offer operation feedback.
   * [MESOS-8534] - Separate CNI networks for nested containers.
   * [MESOS-8649] - Support for Container Storage Interface version 0.2.
   * [MESOS-8801] - Linux support for jemalloc.



mesos git commit: Added operation feedback to the list of experimental features.

2018-05-14 Thread grag
Repository: mesos
Updated Branches:
  refs/heads/master e181f26b6 -> 90ce79767


Added operation feedback to the list of experimental features.


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

Branch: refs/heads/master
Commit: 90ce797677eda14cc82578a9bd90f67c8df97301
Parents: e181f26
Author: Greg Mann 
Authored: Mon May 14 09:06:21 2018 -0700
Committer: Greg Mann 
Committed: Mon May 14 09:06:21 2018 -0700

--
 CHANGELOG | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/mesos/blob/90ce7976/CHANGELOG
--
diff --git a/CHANGELOG b/CHANGELOG
index 79d9095..0fb4175 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -21,9 +21,10 @@ This release contains the following new features:
   * [MESOS-7944] - **Experimental** Added a new `MemoryProfiler` class to
 libprocess to aid in debugging memory issues.
 
-  * [MESOS-8054] - Schedulers can now receive feedback about offer operations
-which operate on resources managed by resource providers. In the future,
-this feature will be extended to operations on agent default resources.
+  * [MESOS-8054] - **Experimental** Schedulers can now receive feedback about
+offer operations which operate on resources managed by resource providers.
+In the future, this feature will be extended to operations on agent default
+resources.
 
   * [MESOS-8534] - **Experimental** A nested container is now allowed
 to join a separate CNI network than its parent container.
@@ -122,6 +123,7 @@ All Experimental Features:
   * [MESOS-5931] - Support auto backend in Mesos Containerizer.
   * [MESOS-6014] - Added port mapping CNI plugin.
   * [MESOS-7944] - Libprocess `MemoryProfiler`.
+  * [MESOS-8054] - Offer operation feedback.
   * [MESOS-8534] - Separate CNI networks for nested containers.
   * [MESOS-8649] - Support for Container Storage Interface version 0.2.
   * [MESOS-8801] - Linux support for jemalloc.