[3/3] git commit: Fixed a bug in the WebUI where the cluster name flashes in the navbar.

2013-07-18 Thread bmahler
Fixed a bug in the WebUI where the cluster name flashes in the navbar. {{state.cluster}} flashes in the upper right of the nav bar before the template is replaced by Angular. Angular provides the ngCloak directive[1] to hide elements until they are rendered, and this is an appropriate use case.

[02/39] git commit: Removed the slaves table from main page of the WebUI.

2013-07-18 Thread bmahler
Removed the slaves table from main page of the WebUI. Frameworks are now front and center. Slaves can still be accessed via the navbar, but they no longer take valuable space and time on the homepage of the web UI. Original review: https://reviews.apache.org/r/12604/ From: Ross Allen

[38/39] git commit: Removed unused 'slaves' variable from controllers.js.

2013-07-18 Thread bmahler
Removed unused 'slaves' variable from controllers.js. Original review: https://reviews.apache.org/r/12714/ From: Ross Allen ross...@mesosphe.re Review: https://reviews.apache.org/r/12740 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[04/39] Organized WebUI static assets into directories.

2013-07-18 Thread bmahler
http://git-wip-us.apache.org/repos/asf/mesos/blob/5852eb93/src/webui/master/static/underscore-1.4.3.min.js -- diff --git a/src/webui/master/static/underscore-1.4.3.min.js b/src/webui/master/static/underscore-1.4.3.min.js deleted

[07/39] Organized WebUI static assets into directories.

2013-07-18 Thread bmahler
http://git-wip-us.apache.org/repos/asf/mesos/blob/5852eb93/src/webui/master/static/js/underscore-1.4.3.min.js -- diff --git a/src/webui/master/static/js/underscore-1.4.3.min.js b/src/webui/master/static/js/underscore-1.4.3.min.js

[10/39] Organized WebUI static assets into directories.

2013-07-18 Thread bmahler
http://git-wip-us.apache.org/repos/asf/mesos/blob/5852eb93/src/webui/master/static/js/jquery.pailer.js -- diff --git a/src/webui/master/static/js/jquery.pailer.js b/src/webui/master/static/js/jquery.pailer.js new file mode 100644

[35/39] git commit: Wrapped app.js in a closure.

2013-07-18 Thread bmahler
Wrapped app.js in a closure. Strict mode was applied at the top of app.js, but because it wasn't wrapped it in a closure, strict mode was applied globally. The closure will ensure the file doesn't unintentionally leak any globals as well. Original review: https://reviews.apache.org/r/12614/

[19/39] Organized WebUI static assets into directories.

2013-07-18 Thread bmahler
http://git-wip-us.apache.org/repos/asf/mesos/blob/5852eb93/src/webui/master/static/dashboard.js -- diff --git a/src/webui/master/static/dashboard.js b/src/webui/master/static/dashboard.js deleted file mode 100644 index

[24/39] Organized WebUI static assets into directories.

2013-07-18 Thread bmahler
+ ')'; - }; -} - - -function updateInterval(num_slaves) { - // TODO(bmahler): Increasing the update interval for large clusters - // is done purely to mitigate webui performance issues. Ideally we can - // keep a consistently fast rate for updating statistical information. - // For the full system state updates

[01/39] git commit: Replaced ID / timestamp popovers with copy-to-clipboard.

2013-07-18 Thread bmahler
Updated Branches: refs/heads/master 57a60e165 - 680772c1a Replaced ID / timestamp popovers with copy-to-clipboard. From: Ross Allen ross...@mesosphe.re Review: https://reviews.apache.org/r/12730 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[3/3] git commit: Fixed the CgroupsIsolator to check for the existence of the nested test cgroup.

2013-07-20 Thread bmahler
Fixed the CgroupsIsolator to check for the existence of the nested test cgroup. Sometimes the cgroup tests fail because the test cgroup is already there. This ensures that it gets cleaned by the next test. We also check that it exists before we try creating it. If it already exists, we skip the

git commit: Removed unnecessary sleeping from the test executors.

2013-07-29 Thread bmahler
Updated Branches: refs/heads/master 15400c229 - 834e36552 Removed unnecessary sleeping from the test executors. Review: https://reviews.apache.org/r/12781 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/834e3655 Tree:

[3/3] git commit: Added a Process.provide test.

2013-08-05 Thread bmahler
Added a Process.provide test. Review: https://reviews.apache.org/r/12621 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/9d5c4e0a Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/9d5c4e0a Diff:

[4/5] git commit: Rewrote os::read(string path) to use getline.

2013-08-09 Thread bmahler
(bmahler): Handle a non-blocking fd? (EAGAIN, EWOULDBLOCK) - if (errno == EINTR) { -continue; - } - // Attempt to restore the original offset. - lseek(fd, current, SEEK_SET); - return ErrnoError(); -} else if (length == 0) { - // Reached EOF before expected

[3/5] git commit: Fixed session handling on OS X.

2013-08-09 Thread bmahler
Fixed session handling on OS X. On OS X, it appears that getsid() returns ESRCH for zombie processes. Review: https://reviews.apache.org/r/13396 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/5d0195b3 Tree:

[1/2] git commit: Added a re-registration time for slaves.

2013-08-23 Thread bmahler
Updated Branches: refs/heads/master 82fa5bff4 - 58c400745 Added a re-registration time for slaves. Review: https://reviews.apache.org/r/13743 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/58c40074 Tree:

git commit: Updated version to 0.15.0.

2013-08-23 Thread bmahler
Updated Branches: refs/heads/master b1f926db0 - c014cfb2d Updated version to 0.15.0. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/c014cfb2 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/c014cfb2 Diff:

git commit: Added a recovery timeout for executor driver self-termination.

2013-08-26 Thread bmahler
Updated Branches: refs/heads/master f00832a1d - 5eb50d6e8 Added a recovery timeout for executor driver self-termination. Review: https://reviews.apache.org/r/13791 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/5eb50d6e

Git Push Summary

2013-08-26 Thread bmahler
Updated Tags: refs/tags/0.14.0-rc2 [created] 2346f6de4

[3/3] git commit: Upgraded ZooKeeper from 3.3.4 to 3.3.6.

2013-08-26 Thread bmahler
Upgraded ZooKeeper from 3.3.4 to 3.3.6. From: Vinson Lee v...@twitter.com Review: https://reviews.apache.org/r/13598 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/eb1cd4a7 Tree:

[2/3] git commit: Fixed a 32 bit compilation issue in files.cpp.

2013-08-26 Thread bmahler
Fixed a 32 bit compilation issue in files.cpp. The call to min(ssize_t, long int) won't compile on 32 bit systems because ssize_t resolves to int on those systems. From: Kevin Lyda ke...@ie.suberic.net Review: https://reviews.apache.org/r/13793 Project:

[1/2] git commit: Reverted Upgraded ZooKeeper from 3.3.4 to 3.3.6..

2013-08-28 Thread bmahler
Updated Branches: refs/heads/master 400a88f98 - 6f7a4d745 Reverted Upgraded ZooKeeper from 3.3.4 to 3.3.6.. This reverts commit eb1cd4a7c0ad4310f090d4f0643cf4059ac5246b. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[3/6] git commit: Fixed a bug in reconciliation that failed to account for unknown executors.

2013-09-04 Thread bmahler
. + multihashmapFrameworkID, ExecutorID slaveExecutors; + foreach (const ExecutorInfo executor, executors) { +// TODO(bmahler): The slave ensures the framework id is set in the +// framework info when re-registering. This can be killed in 0.15.0 +// as we've added code in 0.14.0

Git Push Summary

2013-09-04 Thread bmahler
Updated Tags: refs/tags/0.14.0-rc3 [created] c12a86df1

Git Push Summary

2013-09-10 Thread bmahler
Updated Tags: refs/tags/0.13.0 [created] a2d6e0f45

svn commit: r2854 - in /release/mesos/0.13.0: ./ mesos-0.13.0.tar.gz mesos-0.13.0.tar.gz.asc mesos-0.13.0.tar.gz.md5

2013-09-10 Thread bmahler
Author: bmahler Date: Wed Sep 11 03:25:57 2013 New Revision: 2854 Log: Releasing mesos 0.13.0. Added: release/mesos/0.13.0/ release/mesos/0.13.0/mesos-0.13.0.tar.gz (with props) release/mesos/0.13.0/mesos-0.13.0.tar.gz.asc release/mesos/0.13.0/mesos-0.13.0.tar.gz.md5 Added

git commit: Fixed the broken OsTest.process and OsTest.killtree tests.

2013-09-10 Thread bmahler
Updated Branches: refs/heads/master 257e3f9da - 012d7c71c Fixed the broken OsTest.process and OsTest.killtree tests. Review: https://reviews.apache.org/r/14072 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/012d7c71

[2/4] git commit: Added the ability to parse Byte flags.

2013-09-23 Thread bmahler
Added the ability to parse Byte flags. Review: https://reviews.apache.org/r/14042 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/c1189c03 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/c1189c03 Diff:

[3/4] git commit: Fixed io_test to expect a successful return value from pipe().

2013-09-23 Thread bmahler
Fixed io_test to expect a successful return value from pipe(). Verify that pipe() did not fail before trying to use the resulting pipe. Signed-off-by: David Mackey tdmac...@booleanhaiku.com From: David Mackey tdmac...@booleanhaiku.com Review: https://reviews.apache.org/r/14245 Project:

[1/4] git commit: Cleaned up strings::tokenize.

2013-09-23 Thread bmahler
Updated Branches: refs/heads/master 2210a9e52 - 94f594869 Cleaned up strings::tokenize. Trivial cleanup of Stout's tokenize function. Also, this is last change I needed to get Clang Static Analyzer to build and analyze Mesos on Ubuntu 13.04. (It was complaining about offset never being read

git commit: Fixed a memory leak in os::read().

2013-09-25 Thread bmahler
Updated Branches: refs/heads/master 58955f9c9 - 766bc68a6 Fixed a memory leak in os::read(). From: David Mackey tdmac...@booleanhaiku.com Review: https://reviews.apache.org/r/14336 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[6/9] git commit: Re-structured the Slave::tasks map.

2013-10-02 Thread bmahler
-resources() @@ -413,11 +409,11 @@ struct Slave // Executors running on this slave. hashmapFrameworkID, hashmapExecutorID, ExecutorInfo executors; - // Tasks running on this slave, indexed by FrameworkID x TaskID. + // Tasks present on this slave. // TODO(bmahler): The task pointer

[7/9] git commit: Added a union operator to hashset.

2013-10-02 Thread bmahler
Added a union operator to hashset. Review: https://reviews.apache.org/r/14437 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/4e14e315 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/4e14e315 Diff:

[3/9] git commit: Added memory threshold notifications for inducing OOMs.

2013-10-02 Thread bmahler
Added memory threshold notifications for inducing OOMs. Review: https://reviews.apache.org/r/14043 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/8d742395 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/8d742395

[5/9] git commit: Added a task reconciliation test.

2013-10-02 Thread bmahler
. Notably: +// 1. The tasks are sent to LOST. +// 2. The task resources are recovered. +// TODO(bmahler): Ensure the executor resources are recovered by +// using an explicit executor. +TYPED_TEST(SlaveRecoveryTest, ReconcileTasksMissingFromSlave) +{ + MockAllocatorProcessmaster::allocator

[9/9] git commit: Fixed a bug with resource accounting in reconciliation.

2013-10-02 Thread bmahler
); - } + // TODO(bmahler): There's an implicit assumption here that when + // the master already knows about this slave, the slave cannot + // have tasks unknown to the master. This _should_ be the case + // since the causal relationship is: + // slave removes task - master

[2/9] git commit: Updated the balloon tests to test the memory threshold.

2013-10-02 Thread bmahler
Updated the balloon tests to test the memory threshold. Review: https://reviews.apache.org/r/14044 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/ebba5c10 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/ebba5c10

git commit: Added a missing include.

2013-10-02 Thread bmahler
Updated Branches: refs/heads/master 859a1a87a - b9e6ce6e9 Added a missing include. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/b9e6ce6e Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/b9e6ce6e Diff:

git commit: Fixed ARG_MAX compilation issue on some POSIX systems.

2013-10-02 Thread bmahler
Updated Branches: refs/heads/master b9e6ce6e9 - d8da5f4d1 Fixed ARG_MAX compilation issue on some POSIX systems. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/d8da5f4d Tree:

[2/2] git commit: Fixed a case where Framework re-registration time was not being updated.

2013-10-08 Thread bmahler
); + + // TODO(bmahler): It would be preferred to use a unique libprocess + // Process identifier (PID is not sufficient) for identifying the + // framework instance, rather than relying on re-registration time. void frameworkFailoverTimeout(const FrameworkID frameworkId

[1/2] git commit: Fixed an issue where the Master unnecessarily sends a Framework failed over message when the scheduler driver retries an initial failover re-registration.

2013-10-08 Thread bmahler
Updated Branches: refs/heads/master 576448554 - a8e36eb86 Fixed an issue where the Master unnecessarily sends a Framework failed over message when the scheduler driver retries an initial failover re-registration. Review: https://reviews.apache.org/r/13757 Project:

[1/2] git commit: Fixed the slave to ignore messages not originating from the expected master.

2013-10-08 Thread bmahler
::runTask( const string pid, const TaskInfo task) { + // TODO(bmahler): Consider ignoring requests not originating from the + // expected master. + LOG(INFO) Got assigned task task.task_id() for framework frameworkId; @@ -1043,6 +1058,9 @@ void Slave::_runTask

[2/2] git commit: Fixed a crash in the master during framework re-registration.

2013-10-08 Thread bmahler
Fixed a crash in the master during framework re-registration. Review: https://reviews.apache.org/r/14548 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/8077ad40 Tree:

[1/2] git commit: Added 0.12.1 to the CHANGELOG.

2013-10-09 Thread bmahler
Updated Branches: refs/heads/master 92ec76b9a - b2fa840cb Added 0.12.1 to the CHANGELOG. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/74381902 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/74381902 Diff:

Git Push Summary

2013-10-09 Thread bmahler
Updated Tags: refs/tags/0.14.1-rc1 [created] 3cf5803d4

[3/3] git commit: Added a C++ style checker.

2013-10-14 Thread bmahler
Added a C++ style checker. To avoid style glitches, it would be handy to have a style checker to catch the most common (and hard to find) errors such as whitespaces, tabs, line widths and so forth. While it is not likely to find a fully compatible style checker, Google's cpplint can be

[1/3] Added a C++ style checker.

2013-10-14 Thread bmahler
Updated Branches: refs/heads/master df0816ca6 - 38e92332f http://git-wip-us.apache.org/repos/asf/mesos/blob/38e92332/support/mesos-style.py -- diff --git a/support/mesos-style.py b/support/mesos-style.py new file mode 100644

git commit: Disabled the RecoveryTimeout test.

2013-10-15 Thread bmahler
(SlaveRecoveryTest, RecoveryTimeout) +// TODO(bmahler): Disabled for MESOS-685: the exited() event for the +// slave will not be delivered to the executor driver. +TYPED_TEST(SlaveRecoveryTest, DISABLED_RecoveryTimeout) { TryPIDMaster master = this-StartMaster(); ASSERT_SOME(master);

svn commit: r3285 - /release/mesos/KEYS

2013-10-16 Thread bmahler
Author: bmahler Date: Thu Oct 17 00:25:40 2013 New Revision: 3285 Log: Adding KEYS file. Added: release/mesos/KEYS Added: release/mesos/KEYS == --- release/mesos/KEYS (added) +++ release/mesos/KEYS Thu Oct 17 00:25

svn commit: r3313 - in /release/mesos/0.14.1: ./ mesos-0.14.1.tar.gz mesos-0.14.1.tar.gz.asc mesos-0.14.1.tar.gz.md5

2013-10-21 Thread bmahler
Author: bmahler Date: Mon Oct 21 19:04:54 2013 New Revision: 3313 Log: Releasing Apache Mesos 0.14.1. Added: release/mesos/0.14.1/ release/mesos/0.14.1/mesos-0.14.1.tar.gz (with props) release/mesos/0.14.1/mesos-0.14.1.tar.gz.asc release/mesos/0.14.1/mesos-0.14.1.tar.gz.md5

svn commit: r1534338 - in /mesos: website/downloads.html website/gettingstarted.html website/index.html www/downloads/index.html www/gettingstarted/index.html www/index.html www/sitemap.xml

2013-10-21 Thread bmahler
Author: bmahler Date: Mon Oct 21 19:35:22 2013 New Revision: 1534338 URL: http://svn.apache.org/r1534338 Log: Updated the website to reflect the 0.14.1 release. Modified: mesos/website/downloads.html mesos/website/gettingstarted.html mesos/website/index.html mesos/www/downloads

[4/5] git commit: Revert Added a missing include.

2013-10-23 Thread bmahler
Revert Added a missing include. This reverts commit b9e6ce6e9ccbf08ae8a6a666c09391b407a3d82a. Review: https://reviews.apache.org/r/14861 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/be9c22f9 Tree:

[3/3] git commit: Removed hard tabs in libprocess.

2013-10-23 Thread bmahler
Removed hard tabs in libprocess. From: Niklas Nielsen n...@qni.dk Review: https://reviews.apache.org/r/14720 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/d3d0f082 Tree:

[1/3] git commit: Removed hard tabs in the Mesos code.

2013-10-23 Thread bmahler
Updated Branches: refs/heads/master 979aa3ac3 - e0f1d7645 Removed hard tabs in the Mesos code. From: Niklas Nielsen n...@qni.dk Review: https://reviews.apache.org/r/14722 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[2/3] git commit: Removed hard tabs in zookeeper related code.

2013-10-23 Thread bmahler
Removed hard tabs in zookeeper related code. From: Niklas Nielsen n...@qni.dk Review: https://reviews.apache.org/r/14721 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/1a24f4ea Tree:

[3/3] git commit: Require ProtobufProcess message handlers to take the sender explicitly.

2013-10-24 Thread bmahler
Require ProtobufProcess message handlers to take the sender explicitly. Review: https://reviews.apache.org/r/14900 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/f6793de1 Tree:

[2/3] git commit: Updated users of ProtobufProcess::from.

2013-10-24 Thread bmahler
deactivateSlave( + const SlaveID slaveId); // TODO(bmahler): It would be preferred to use a unique libprocess // Process identifier (PID is not sufficient) for identifying the // framework instance, rather than relying on re-registration time. - void frameworkFailoverTimeout(const

[1/3] git commit: Removed logging to /tmp when --log_dir is ommitted.

2013-10-24 Thread bmahler
Updated Branches: refs/heads/master 8aa699dfd - 53f584017 Removed logging to /tmp when --log_dir is ommitted. The current intialization of glog creates log files in /tmp even when the log_dir command argument is not passed. Setting FLAGS_logtostderr to true disables all log file

Git Push Summary

2013-10-28 Thread bmahler
Updated Tags: refs/tags/0.14.2-rc1 [created] e16f63768

[1/3] git commit: Made Promise have a virtual destructor.

2013-10-29 Thread bmahler
Updated Branches: refs/heads/master 3c61c6ff6 - 137f4e86e Made Promise have a virtual destructor. See summary. From: Benjamin Hindman b...@berkeley.edu Review: https://reviews.apache.org/r/14382 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

git commit: Modified mesos-execute so that it reports the framework id and task id.

2013-11-01 Thread bmahler
Updated Branches: refs/heads/master 006b712ba - b12ef3fb2 Modified mesos-execute so that it reports the framework id and task id. From: Shingo Omura everpe...@gmail.com Review: https://reviews.apache.org/r/15161 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

git commit: Refactored mesos-ps to display CPU and memory information.

2013-11-11 Thread bmahler
Updated Branches: refs/heads/master f69eab218 - 1a3b6bb8b Refactored mesos-ps to display CPU and memory information. From: Shingo Omura everpe...@gmail.com Review: https://reviews.apache.org/r/15200 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

git commit: Refactored mesos-tail to use helpers from cli.py.

2013-11-11 Thread bmahler
Updated Branches: refs/heads/master 1a3b6bb8b - 3c771fb8a Refactored mesos-tail to use helpers from cli.py. From: Shingo Omura everpe...@gmail.com Review: https://reviews.apache.org/r/15336 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[1/2] git commit: Added a note about the reliability of kill task requests.

2013-11-12 Thread bmahler
Updated Branches: refs/heads/master f45214ab8 - 251656f77 Added a note about the reliability of kill task requests. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/251656f7 Tree:

[2/2] git commit: Fixed typos and errors in the Log Javadoc.

2013-11-12 Thread bmahler
Fixed typos and errors in the Log Javadoc. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/2e45578b Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/2e45578b Diff:

git commit: Fixed typos in the Log javadoc.

2013-11-12 Thread bmahler
Updated Branches: refs/heads/master 251656f77 - 3537fa34c Fixed typos in the Log javadoc. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/3537fa34 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/3537fa34 Diff:

git commit: Fixed flaky FaultToleranceTest.SchedulerFailoverStatusUpdate.

2013-12-02 Thread bmahler
Updated Branches: refs/heads/master 82fd755f0 - 48d7f62d6 Fixed flaky FaultToleranceTest.SchedulerFailoverStatusUpdate. From: Jiang Yan Xu y...@jxu.me Review: https://reviews.apache.org/r/15946 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[1/2] git commit: Fixed MESOS-851: The drivers now ignore queued messages when aborted.

2013-12-03 Thread bmahler
message processed. + // TODO(bmahler): Use an atomic boolean. + process-aborted = true; + + // Dispatching here ensures that we still process the outstanding + // requests *from* the executor, since those do proceed when + // aborted is true. dispatch(process, ExecutorProcess::abort); return

Git Push Summary

2013-12-05 Thread bmahler
Updated Tags: refs/tags/0.16.0-rc1 [created] d0cb03f95

[1/2] git commit: Fixed group to use 32 bit signed integers for sequence numbers.

2013-12-05 Thread bmahler
Updated Branches: refs/heads/master cac2d3995 - fa14ea423 Fixed group to use 32 bit signed integers for sequence numbers. Review: https://reviews.apache.org/r/16045 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[2/2] git commit: Fixed an exception raised in the master related to task statuses.

2013-12-05 Thread bmahler
Fixed an exception raised in the master related to task statuses. Review: https://reviews.apache.org/r/16038 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/081a1aba Tree:

git commit: Fixed MESOS-870: The slave's http endpoint can crash the slave.

2013-12-05 Thread bmahler
Updated Branches: refs/heads/master e5cf7360a - e1875ce9f Fixed MESOS-870: The slave's http endpoint can crash the slave. Review: https://reviews.apache.org/r/16072 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

git commit: Fixed the master to drop authentication when non-leading.

2013-12-06 Thread bmahler
Updated Branches: refs/heads/master e1875ce9f - 9dbb5ecec Fixed the master to drop authentication when non-leading. Review: https://reviews.apache.org/r/16068 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/9dbb5ece

git commit: Fixed the flaky FaultTolerance.SlaveReliableRegistration test.

2013-12-06 Thread bmahler
Updated Branches: refs/heads/master 9dbb5ecec - 5efe7d7bb Fixed the flaky FaultTolerance.SlaveReliableRegistration test. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/5efe7d7b Tree:

git commit: Fixed the python tests in the presence of muliple eggs.

2013-12-10 Thread bmahler
Updated Branches: refs/heads/master 4f99d86fe - 969e7a49a Fixed the python tests in the presence of muliple eggs. Review: https://reviews.apache.org/r/16136 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/969e7a49 Tree:

git commit: Fixed shell scripts to assume bash.

2013-12-11 Thread bmahler
Updated Branches: refs/heads/master 473dd4fb3 - 4a819bd6b Fixed shell scripts to assume bash. Review: https://reviews.apache.org/r/16164 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/4a819bd6 Tree:

git commit: Fixed some copy / paste mistakes in the ExecutorDriver javadoc.

2013-12-11 Thread bmahler
Updated Branches: refs/heads/master 4a819bd6b - 360903ff3 Fixed some copy / paste mistakes in the ExecutorDriver javadoc. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/360903ff Tree:

svn commit: r1551454 - in /mesos: website/downloads.html www/downloads/index.html www/sitemap.xml

2013-12-16 Thread bmahler
Author: bmahler Date: Tue Dec 17 03:11:21 2013 New Revision: 1551454 URL: http://svn.apache.org/r1551454 Log: Updated the incubating release downloads to point to the Apache archives. Modified: mesos/website/downloads.html mesos/www/downloads/index.html mesos/www/sitemap.xml

svn commit: r3924 - in /release/incubator/mesos: mesos-0.10.0-incubating/ mesos-0.11.0-incubating/ mesos-0.12.0-incubating/ mesos-0.9.0-incubating/

2013-12-16 Thread bmahler
Author: bmahler Date: Tue Dec 17 03:57:21 2013 New Revision: 3924 Log: Removed the old releases per MESOS-882. Removed: release/incubator/mesos/mesos-0.10.0-incubating/ release/incubator/mesos/mesos-0.11.0-incubating/ release/incubator/mesos/mesos-0.12.0-incubating/ release

git commit: Moved slave state API functions to the top of the header.

2013-12-17 Thread bmahler
Updated Branches: refs/heads/master 9cbb81ba4 - c020a889e Moved slave state API functions to the top of the header. Review: https://reviews.apache.org/r/16237 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/c020a889

git commit: Fixed a bug that can cause the Master to produce a growing number of leader detection loops.

2013-12-19 Thread bmahler
Updated Branches: refs/heads/master e769b3b77 - caa3c301f Fixed a bug that can cause the Master to produce a growing number of leader detection loops. From: Jiang Yan Xu y...@jxu.me Review: https://reviews.apache.org/r/16333 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[1/7] git commit: Added timeval retrieval from sysctl.

2013-12-19 Thread bmahler
Updated Branches: refs/heads/master caa3c301f - 6fcc6b935 Added timeval retrieval from sysctl. Review: https://reviews.apache.org/r/16336 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/83e1547f Tree:

[6/7] git commit: Changed master detector to return FutureOption instead of FutureResult.

2013-12-19 Thread bmahler
Changed master detector to return FutureOption instead of FutureResult. Now that local session timeouts are transparent to the clients of the master detector, they are not supposed to retry anymore. Thus passing ResultUPID previous back into MasterDetector::detect() is no longer correct. From:

[7/7] git commit: Updated Group to discard futures instead of failing them upon destruction.

2013-12-19 Thread bmahler
Updated Group to discard futures instead of failing them upon destruction. From: Jiang Yan Xu y...@jxu.me Review: https://reviews.apache.org/r/16345 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/6fcc6b93 Tree:

[4/7] git commit: Added equality comparator for OptionT vs T.

2013-12-19 Thread bmahler
Added equality comparator for OptionT vs T. From: Jiang Yan Xu y...@jxu.me Review: https://reviews.apache.org/r/16332 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/0764b7e7 Tree:

[3/7] git commit: Added os::bootId.

2013-12-19 Thread bmahler
Added os::bootId. This can be used to identify a reboot, should the boot id change. For OS X and POSIX systems, the boot time in seconds from sysctl and utmpx (respectively) are used as a good approximation for a unique boot id. Review: https://reviews.apache.org/r/16235 Project:

[5/7] git commit: Fixed group to not retry when non-retryable errors are encountered.

2013-12-19 Thread bmahler
Fixed group to not retry when non-retryable errors are encountered. From: Jiang Yan Xu y...@jxu.me Review: https://reviews.apache.org/r/16290 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/aa75551a Tree:

git commit: Added missing includes for linux/cgroups.hpp.

2014-01-06 Thread bmahler
Updated Branches: refs/heads/master 1d72b17ef - de4b104cf Added missing includes for linux/cgroups.hpp. From: Ian Downes ian.dow...@gmail.com Review: https://reviews.apache.org/r/16665 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

git commit: Added a configure time check for building a native python egg.

2014-01-10 Thread bmahler
Updated Branches: refs/heads/master e4acefe4b - c3505e319 Added a configure time check for building a native python egg. This autoconf check does a rather complex test for covering MESOS-799. It builds and test-runs a minimal egg that links against a static library that imports a standard

git commit: Fixed namespace resolution in slave/paths.hpp.

2014-01-10 Thread bmahler
Updated Branches: refs/heads/master c3505e319 - 3a69423b8 Fixed namespace resolution in slave/paths.hpp. From: Ian Downes ian.dow...@gmail.com Review: https://reviews.apache.org/r/16788 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

Git Push Summary

2014-01-13 Thread bmahler
Updated Tags: refs/tags/0.16.0-rc3 [created] afe994774

git commit: Added missing offers.html file in the distribution.

2014-01-14 Thread bmahler
Updated Branches: refs/heads/master b34b31807 - 86dc2b116 Added missing offers.html file in the distribution. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/86dc2b11 Tree:

git commit: Added missing include guards in set.hpp.

2014-01-16 Thread bmahler
Updated Branches: refs/heads/master 10ff89653 - 3d46cce23 Added missing include guards in set.hpp. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/3d46cce2 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/3d46cce2

git commit: Fixed the flaky GroupTest.RetryableErrors test.

2014-01-17 Thread bmahler
Updated Branches: refs/heads/master ac8e9bbd3 - 5b4a3a80e Fixed the flaky GroupTest.RetryableErrors test. From: Jiang Yan Xu y...@jxu.me Review: https://reviews.apache.org/r/16824 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

git commit: Documentation: Added Aurora to the frameworks list.

2014-01-20 Thread bmahler
Updated Branches: refs/heads/master 115ab9450 - cebfe9e7f Documentation: Added Aurora to the frameworks list. Aurora is awesome, it should be added to the docs for mesos frameworks. The list is now alphabetical as well. From: Jeffrey Schroeder jeffschroe...@computer.org Review:

[1/8] git commit: Added another argument to strings::format.

2014-01-22 Thread bmahler
Updated Branches: refs/heads/master 178e778c4 - ed3f0438d Added another argument to strings::format. Review: https://reviews.apache.org/r/16855 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/58294bc8 Tree:

[6/8] git commit: Added a List type in stout.

2014-01-22 Thread bmahler
, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +#include list + +#include stout/preprocessor.hpp + +template typename T +class List : public std::listT +{ +public: + List() {} + + // TODO(bmahler): Revisit

[3/8] git commit: Removed the deprecated monitoring statistics.

2014-01-22 Thread bmahler
a931c4f..b41633f 100644 --- a/src/slave/monitor.cpp +++ b/src/slave/monitor.cpp @@ -53,7 +53,6 @@ using process::wait; // Necessary on some OS's to disambiguate. // TODO(bmahler): Later, when we have a richer monitoring story, // we will want to publish these outside of this file. // TODO(cdel

[2/8] git commit: Refactored the ResourceMonitor to use TimeSeries directly instead of Statistics.

2014-01-22 Thread bmahler
. -// TODO(bmahler): Later, when we have a richer monitoring story, -// we will want to publish these outside of this file. -// TODO(cdel): Check if we need any more of the cgroup stats. -const std::string CPUS_USER_TIME_SECS = cpus_user_time_secs; -const std::string CPUS_SYSTEM_TIME_SECS

[4/8] git commit: Reverted metering from Statistics.

2014-01-22 Thread bmahler
@@ namespace process { Statistics* statistics = NULL; // TODO(bmahler): Move time series related logic into this struct. -// TODO(bmahler): Investigate using google's btree implementation. +// TODO(bmahler): Investigate using Google's sparse_hash_map. +// Also investigate using Google's btree

  1   2   3   4   5   6   7   8   9   10   >