mesos git commit: Revert "Introduced an Authenticator interface and an AuthenticationRouter in libprocess."

2015-11-18 Thread bmahler
+462,6 @@ static ProcessManager* process_manager = NULL; // Scheduling gate that threads wait at when there is nothing to run. static Gate* gate = new Gate(); -// Used for authenticating HTTP requests. -static AuthenticationRouter* authentication_router = NULL; - // Filter. Synchronized support for using the fil

mesos git commit: Restored the ABORT message in Subprocess to show the execvpe path.

2015-11-20 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 2373b7a2c -> ef5b247aa Restored the ABORT message in Subprocess to show the execvpe path. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/ef5b247a Tree: http://git-wip-

mesos git commit: Removed the unnecessary 'socket' member of HttpEvent in libprocess.

2015-11-20 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master ef5b247aa -> b62f7c07f Removed the unnecessary 'socket' member of HttpEvent in libprocess. Previously we passed the 'socket' in to the HttpEvent in order to access the HttpProxy when the event was visited. However, this was made unnecessary

mesos git commit: Introduced an Authenticator interface and an AuthenticationRouter in libprocess.

2015-11-20 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master b62f7c07f -> 46fa82c7d Introduced an Authenticator interface and an AuthenticationRouter in libprocess. The Authenticator interface allows us to implement different authenticators based on the scheme (e.g. Basic, Digest, SPNEGO). The Authen

mesos git commit: Fixed a flaky issue in DiskQuotaTest.SlaveRecovery.

2015-11-20 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 46fa82c7d -> aa8de47d4 Fixed a flaky issue in DiskQuotaTest.SlaveRecovery. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/aa8de47d Tree: http://git-wip-us.apache.org/r

Git Push Summary

2014-07-18 Thread bmahler
Repository: mesos Updated Tags: refs/tags/0.19.1 [created] dc0b7bf2a

svn commit: r5903 - in /release/mesos/0.19.1: ./ mesos-0.19.1.tar.gz mesos-0.19.1.tar.gz.asc mesos-0.19.1.tar.gz.md5

2014-07-18 Thread bmahler
Author: bmahler Date: Fri Jul 18 18:35:33 2014 New Revision: 5903 Log: Adding mesos-0.19.1. Added: release/mesos/0.19.1/ release/mesos/0.19.1/mesos-0.19.1.tar.gz (with props) release/mesos/0.19.1/mesos-0.19.1.tar.gz.asc release/mesos/0.19.1/mesos-0.19.1.tar.gz.md5 Added

git commit: Unified status update logging in the master.

2014-07-18 Thread bmahler
const StatusUpdate& update, const UPID& pid) +void Master::forward( +const StatusUpdate& update, +const UPID& acknowledgee, +Framework* framework) { - Framework* framework = getFramework(update.framework_id()); - if (framework == NULL) { -return Error("Unknown frame

git commit: Fixed a clang compilation issue in master.cpp.

2014-07-20 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master cb06d8081 -> aa5ac72f6 Fixed a clang compilation issue in master.cpp. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/aa5ac72f Tree: http://git-wip-us.apache.org/repos/

svn commit: r1612387 [4/4] - in /mesos/site: publish/ publish/api/latest/java/ publish/api/latest/java/org/apache/mesos/ publish/documentation/latest/upgrades/ publish/documentation/upgrades/ publish/

2014-07-21 Thread bmahler
Modified: mesos/site/source/api/latest/java/org/apache/mesos/Scheduler.html URL: http://svn.apache.org/viewvc/mesos/site/source/api/latest/java/org/apache/mesos/Scheduler.html?rev=1612387&r1=1612386&r2=1612387&view=diff ==

svn commit: r1612388 - in /mesos/site: publish/ publish/api/latest/java/ publish/api/latest/java/org/apache/mesos/ source/ source/api/latest/java/ source/api/latest/java/org/apache/mesos/

2014-07-21 Thread bmahler
Author: bmahler Date: Mon Jul 21 19:16:33 2014 New Revision: 1612388 URL: http://svn.apache.org/r1612388 Log: Small cleanup for the 0.19.1 release notes link. Modified: mesos/site/publish/api/latest/java/allclasses-frame.html mesos/site/publish/api/latest/java/allclasses-noframe.html

svn commit: r5933 - in /release/mesos: 0.18.0/ 0.18.1/ 0.18.2/

2014-07-21 Thread bmahler
Author: bmahler Date: Mon Jul 21 22:28:22 2014 New Revision: 5933 Log: Removed archived releases. Removed: release/mesos/0.18.0/ release/mesos/0.18.1/ release/mesos/0.18.2/

git commit: Updated the release guide for removing old releases from svn.

2014-07-21 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master b872ccd08 -> 5de5ccb81 Updated the release guide for removing old releases from svn. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/5de5ccb8 Tree: http://git-wip-us.ap

git commit: Do not require the SlaveID in reconciliation requests.

2014-07-21 Thread bmahler
+ VLOG(1) << "Sending implicit reconciliation state " + << update.status().state() + << " for task " << update.status().task_id() + << " of framework " << frameworkId; + //

git commit: Fixed the master to accept a file:// based zk flag.

2014-07-29 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 25666ce6a -> cd61a228e Fixed the master to accept a file:// based zk flag. Review: https://reviews.apache.org/r/23997 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/c

git commit: Cleaned up TODO comments for ZK file:// URL support.

2014-07-29 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 190d15886 -> 98557a7cf Cleaned up TODO comments for ZK file:// URL support. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/98557a7c Tree: http://git-wip-us.apache.org/

git commit: Fixed a flaky slave recovery test.

2014-07-29 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master f66289831 -> 444c60bea Fixed a flaky slave recovery test. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/444c60be Tree: http://git-wip-us.apache.org/repos/asf/mesos/tr

git commit: Cleaned up the flag help documentation.

2014-07-29 Thread bmahler
"); +"Directory path to store the persistent information stored in the \n" +"Registry. (example: /var/lib/mesos/master)"); // TODO(bmahler): Consider removing 'in_memory' as it was only // used before 'replicated_log' was implemented

git commit: Fixed two flaky slave recovery tests.

2014-07-30 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master aa16bbd90 -> 34d4a2f5a Fixed two flaky slave recovery tests. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/34d4a2f5 Tree: http://git-wip-us.apache.org/repos/asf/mesos

git commit: Fixed a flaky slave recovery test.

2014-07-31 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master a3cd43ef9 -> 3047bbe41 Fixed a flaky slave recovery test. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/3047bbe4 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tr

[1/5] git commit: Added a ping timeout in the slave to trigger a re-detection.

2014-08-04 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 81d830f50 -> d47cf3960 Added a ping timeout in the slave to trigger a re-detection. Review: https://reviews.apache.org/r/23868 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos

[2/5] git commit: Master detector cleanups.

2014-08-04 Thread bmahler
MASTER_DETECTOR_ZK_SESSION_TIMEOUT = Seconds(10); +// TODO(bmahler): Consider moving these kinds of helpers into +// libprocess or a common header within mesos. +namespace promises { + +// Helper for setting a set of Promises. +template +void set(std::set* >* promises, const T& t) +{ +

[5/5] git commit: Made WeakFuture::get a const operation.

2014-08-04 Thread bmahler
Made WeakFuture::get a const operation. Review: https://reviews.apache.org/r/23875 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/67b93459 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/67b93459 Diff: http://git-wip

[4/5] git commit: Handle discards on the master detection futures.

2014-08-04 Thread bmahler
Handle discards on the master detection futures. Review: https://reviews.apache.org/r/23867 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/e20ea630 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/e20ea630 Diff: http:

[3/5] git commit: Removed unused code from future.hpp.

2014-08-04 Thread bmahler
Removed unused code from future.hpp. Review: https://reviews.apache.org/r/23874 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/945264f5 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/945264f5 Diff: http://git-wip-us

git commit: Fixed a flaky ping timeout test.

2014-08-05 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 066069dde -> 1909a06e1 Fixed a flaky ping timeout test. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/1909a06e Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree

[4/5] git commit: Model pending tasks in the Master's metrics and JSON.

2014-08-13 Thread bmahler
espace mesos { namespace internal { -// TODO(bmahler): Kill these in favor of automatic Proto->JSON Conversion (when -// it becomes available). +// TODO(bmahler): Kill these in favor of automatic Proto->JSON +// Conversion (when it becomes available). JSON::Object model(const Resources&a

[2/5] git commit: Some Master cleanups.

2014-08-13 Thread bmahler
; } - // TODO(bmahler): This case can be caught during offer validation. - if (offerIds.empty()) { -LOG(WARNING) << "No offers to launch tasks on"; - -foreach (const TaskInfo& task, tasks) { - const StatusUpdate& update = protobuf::createStatusUpdate(

[3/5] git commit: Removed unused test file 'process_spawn.cpp'.

2014-08-13 Thread bmahler
Removed unused test file 'process_spawn.cpp'. Review: https://reviews.apache.org/r/24582 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/30bc5477 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/30bc5477 Diff: http://g

[1/5] git commit: Expose pending tasks during reconciliation.

2014-08-13 Thread bmahler
for framework " << frameworkId; -// TODO(bmahler): Consider sending completed tasks? +foreachvalue (const TaskInfo& task, framework->pendingTasks) { + const StatusUpdate& update = protobuf::createStatusUpdate( + frameworkId, + task

[5/5] git commit: Added a missing test target in Makefile.am.

2014-08-13 Thread bmahler
Added a missing test target in Makefile.am. Review: https://reviews.apache.org/r/24583 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/0e8fa7bf Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/0e8fa7bf Diff: http://git

git commit: Fixed a resource leak in ThreadLocal.

2014-08-13 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 5a4094b36 -> e469815db Fixed a resource leak in ThreadLocal. Review: https://reviews.apache.org/r/24669 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/e469815d Tree:

git commit: Updated the CHANGELOG and upgrades documents for MESOS-1409.

2014-08-18 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 460e6d3b9 -> dd806469c Updated the CHANGELOG and upgrades documents for MESOS-1409. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/dd806469 Tree: http://git-wip-us.apa

git commit: Log the uid and pid when receiving a SIGTERM.

2014-08-25 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master d45c79676 -> d5bbc3549 Log the uid and pid when receiving a SIGTERM. Review: https://reviews.apache.org/r/24700 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/d5bbc35

[2/2] git commit: Adjustments for new JSON streaming.

2014-08-25 Thread bmahler
Adjustments for new JSON streaming. Review: https://reviews.apache.org/r/25053 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/7de27508 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/7de27508 Diff: http://git-wip-us.

[1/2] git commit: Refactored the JSON output streaming.

2014-08-25 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master d5bbc3549 -> 7de27508f Refactored the JSON output streaming. Review: https://reviews.apache.org/r/24877 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/73da21e4 Tree:

[1/5] git commit: Fixed the memory limitation construction.

2014-09-03 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 20afa5e79 -> 803031d94 Fixed the memory limitation construction. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/803031d9 Tree: http://git-wip-us.apache.org/repos/asf/m

[5/5] git commit: Fixed a bug in the staging tasks metric.

2014-09-03 Thread bmahler
Fixed a bug in the staging tasks metric. Review: https://reviews.apache.org/r/25303 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/789d9b4e Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/789d9b4e Diff: http://git-wi

[2/5] git commit: Removed an unnecessarily introduced Option.

2014-09-03 Thread bmahler
Removed an unnecessarily introduced Option. Review: https://reviews.apache.org/r/25304 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/b71dc72d Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/b71dc72d Diff: http://git

[4/5] git commit: Flattened the executor resoures when launching executors.

2014-09-03 Thread bmahler
+67,8 @@ bool matches(const Resource& left, const Resource& right); std::ostream& operator << (std::ostream& stream, const Resource& resource); +// TODO(bmahler): Ensure that the underlying resources are kept +// in a flattened state: MESOS-1714. class Resources

[3/5] git commit: Count pending tasks as staging in the slave.

2014-09-03 Thread bmahler
Count pending tasks as staging in the slave. Review: https://reviews.apache.org/r/25302 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/aa95ca57 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/aa95ca57 Diff: http://gi

git commit: Added optional --offer_timeout to rescind unused offers.

2014-09-05 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 08e3d9d88 -> 707bf3b1d Added optional --offer_timeout to rescind unused offers. The ability to set an offer timeout helps prevent unfair resource allocations in the face of frameworks that hoard offers, or that accidentally drop offers. Wh

[3/3] git commit: Send pending tasks during re-registration.

2014-09-10 Thread bmahler
able_slave()->CopyFrom(info); foreachvalue (Framework* framework, frameworks) { + // TODO(bmahler): We need to send the executors for these + // pending tasks, and we need to send exited events if they + // cannot be launched: MESOS-1715 MESOS-1720. + + typedef hashma

[1/3] git commit: Added a test for sending pending tasks during re-registration.

2014-09-10 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master ab1cf84e7 -> d5974c0a7 Added a test for sending pending tasks during re-registration. Review: https://reviews.apache.org/r/25373 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mes

[2/3] git commit: Made the GarbageCollector injectable into the Slave.

2014-09-10 Thread bmahler
* detector, +slave::GarbageCollector* gc, const Option& flags) { return cluster.slaves.start( - detector, flags.isNone() ? CreateSlaveFlags() : flags.get()); + flags.isNone() ? CreateSlaveFlags() : flags.get(), + None(), + detector, + gc); } @@ -263,9 +28

git commit: Fixed the flaky FaultToleranceTest.ReconcilePendingTasks.

2014-09-12 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master d6c1ef684 -> 9b2bbba89 Fixed the flaky FaultToleranceTest.ReconcilePendingTasks. Review: https://reviews.apache.org/r/25604 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/co

git commit: Added a Version class to stout.

2014-09-16 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 9b2bbba89 -> 9b5895606 Added a Version class to stout. Currently there is no facility in Mesos for checking compatibility of various Mesos components that could have been built at different times with potentially different Mesos versions.

[2/2] git commit: Minor cleanups to the Master code.

2014-09-17 Thread bmahler
Minor cleanups to the Master code. Review: https://reviews.apache.org/r/25566 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/0760b007 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/0760b007 Diff: http://git-wip-us.a

[1/2] git commit: Added a removeExecutor helper in the Master.

2014-09-17 Thread bmahler
he framework its executor's exit status? -// Or maybe at least have something like -// Scheduler::executorLost? - } + removeExecutor(slave, frameworkId, executorId); + + // TODO(benh): Send the framework its executor's exit status? + // Or maybe at least have something l

[1/2] git commit: Replace os::Release with Version.

2014-09-18 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 44f599afd -> 81840c50a Replace os::Release with Version. Review: https://reviews.apache.org/r/25755 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/411625c8 Tree: http

[2/2] git commit: Updated callers to os::release in mesos.

2014-09-18 Thread bmahler
Updated callers to os::release in mesos. Review: https://reviews.apache.org/r/25780 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/81840c50 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/81840c50 Diff: http://git-wi

git commit: Fixed a signed comparision issue in Version.

2014-09-18 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 81840c50a -> 7c51ae38b Fixed a signed comparision issue in Version. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/7c51ae38 Tree: http://git-wip-us.apache.org/repos/as

[2/2] git commit: Hold on to unacknowledged terminal tasks in the Master.

2014-09-18 Thread bmahler
Hold on to unacknowledged terminal tasks in the Master. Review: https://reviews.apache.org/r/25567 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/b3182fbd Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/b3182fbd Diff

[1/2] git commit: Added tests for terminal unacknowledged tasks in the Master.

2014-09-18 Thread bmahler
and master itself when // it generates TASK_LOST messages. Only 'pid' can be used to identify // the slave. +// TODO(bmahler): The master will not release resources until the +// slave receives acknowlegements for all non-terminal updates. This +// means if a framework is down, the

git commit: Fixed a segfault regression in the master.

2014-09-18 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master aa806af08 -> b8fffb56c Fixed a segfault regression in the master. Review: https://reviews.apache.org/r/25810 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/b8fffb56 T

[2/2] git commit: Fixed an executor accounting bug in framework re-registration.

2014-09-19 Thread bmahler
pache.org/repos/asf/mesos/blob/bf94296c/src/master/master.hpp -- diff --git a/src/master/master.hpp b/src/master/master.hpp index f5bf417..f5d74ae 100644 --- a/src/master/master.hpp +++ b/src/master/master.hpp @@ -973,6 +973,8 @@ inli

[1/2] git commit: Ignore terminal task resources in the Master's Framework struct.

2014-09-19 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 2fb0fb03e -> bf94296c9 Ignore terminal task resources in the Master's Framework struct. Review: https://reviews.apache.org/r/25844 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/m

git commit: Fixed an issue with colored output in post-reviews.py.

2014-09-19 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master bf94296c9 -> aff85cf41 Fixed an issue with colored output in post-reviews.py. Review: https://reviews.apache.org/r/25819 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commi

git commit: Refactored the environment-based test filtering.

2014-09-23 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 31337348c -> 7b6547020 Refactored the environment-based test filtering. Review: https://reviews.apache.org/r/25569 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/7b65

git commit: Removed duplicate error messaging in Docker::create.

2014-09-23 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 7b6547020 -> 896ec461e Removed duplicate error messaging in Docker::create. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/896ec461 Tree: http://git-wip-us.apache.org/

git commit: Increased the store timeout for the Registrar tests.

2014-09-29 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 024f24299 -> 6a3273d8e Increased the store timeout for the Registrar tests. Review: https://reviews.apache.org/r/26141 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/

git commit: Remove unused tuples folder.

2014-09-29 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master be33e9a57 -> c7767f051 Remove unused tuples folder. Review: https://reviews.apache.org/r/26152 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/c7767f05 Tree: http://gi

git commit: Fixed the flaky SlaveRecoverTest.MultipleSlaves.

2014-10-01 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 5f7aa4d4d -> 602e40c8c Fixed the flaky SlaveRecoverTest.MultipleSlaves. Review: https://reviews.apache.org/r/26243 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/602e

git commit: Fixed a resource accounting performance regression in the Master.

2014-10-06 Thread bmahler
quot;unregistered_time"] = framework.unregisteredTime.secs(); object.values["active"] = framework.active; - object.values["resources"] = model(framework.used()); + + // TODO(bmahler): Consider deprecating this in favor of the split + // used and offered resources be

[3/8] git commit: Eliminated redundant resource accounting in the master.

2014-10-08 Thread bmahler
@ void Master::readdSlave( addSlave(slave, true); - // Add the executors and tasks to the slave and framework state and - // determine the resources that have been allocated to frameworks. - hashmap resources; - foreach (const ExecutorInfo& executorInfo, executorInfos) { // TODO

[5/8] git commit: Fixed a log line in the master.

2014-10-08 Thread bmahler
Fixed a log line in the master. Review: https://reviews.apache.org/r/26198 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/c8664847 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/c8664847 Diff: http://git-wip-us.apac

[4/8] git commit: Properly deprecated ReregisterSlaveMessage::slave_id.

2014-10-08 Thread bmahler
info.has_id()); + } ~Slave() {} http://git-wip-us.apache.org/repos/asf/mesos/blob/5da57a7e/src/messages/messages.proto ------ diff --git a/src/messages/messages.proto b/src/messages/messages.proto index 9ff06b3..16d9d6

[6/8] git commit: Removed redundant logging in the Master.

2014-10-08 Thread bmahler
Removed redundant logging in the Master. Review: https://reviews.apache.org/r/26203 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/ee4f879e Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/ee4f879e Diff: http://git-wi

[2/8] git commit: Added validation for missing ExecutorInfo::framework_id.

2014-10-08 Thread bmahler
to + // do the validation here. + // TODO(bmahler): Set this field in the master instead of + // depending on the scheduler driver do it. + if (!task.executor().has_framework_id()) { +return stringify( +"Task has invalid ExecutorInfo: missing

[7/8] git commit: Removed the need for Master::readdSlave.

2014-10-08 Thread bmahler
e->observer); - if (!reregister) { -allocator->slaveAdded(slave->id, slave->info, slave->usedResources); - } -} - - -void Master::readdSlave( -Slave* slave, -const vector& executorInfos, -const vector& tasks, -const vector& completedFrameworks) -{ - CHECK_NOTNU

[8/8] git commit: Cleaned up Master::addFramework.

2014-10-08 Thread bmahler
ly determine the resources it's // currently using! addFramework(framework); + + // TODO(bmahler): We have to send a registered message here for +// the re-registering framework, per the API contract. Send +// re-register here per MESOS-786; requires deprecation or it +

[1/8] git commit: Introduced a version during slave (re-)registration.

2014-10-08 Thread bmahler
rocess::UPID& _pid, -const process::Time& time) +const Option _version, +const process::Time& _registeredTime) : id(_info.id()), info(_info), pid(_pid), - registeredTime(time), + version(_version), + registeredTime(_registeredTi

[3/3] git commit: Added a test for the Master <-> Slave reconciliation race.

2014-10-08 Thread bmahler
Added a test for the Master <-> Slave reconciliation race. Review: https://reviews.apache.org/r/26208 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/c96ba8f6 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/c96ba8f6 D

[2/3] git commit: Split out partition and reconciliation tests from FaultTolerace tests.

2014-10-08 Thread bmahler
Split out partition and reconciliation tests from FaultTolerace tests. Review: https://reviews.apache.org/r/26207 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/cd03dfa6 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tre

[1/3] git commit: Introduced Master <-> Slave reconciliation.

2014-10-08 Thread bmahler
<< " (" << slave->info.hostname() - << ") is being allowed to re-register with an already" - << " in use id (" << slave->id << ")"; - -// TODO(bmahler): There's an implicit assumption here that when -

git commit: Update metrics::Timer::stop to return elapsed time.

2014-10-10 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 700defe30 -> d0446b7ea Update metrics::Timer::stop to return elapsed time. Review: https://reviews.apache.org/r/24537 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/d

git commit: Added batch sizes and timings to the Registrar logging.

2014-10-10 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master d0446b7ea -> e46e16a4b Added batch sizes and timings to the Registrar logging. Review: https://reviews.apache.org/r/26535 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/comm

git commit: Added markdown formatting to the committer's guide.

2014-10-10 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master e46e16a4b -> aac1217ae Added markdown formatting to the committer's guide. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/aac1217a Tree: http://git-wip-us.apache.org/r

svn commit: r1630961 [3/3] - in /mesos/site: ./ publish/ publish/documentation/committers-guide/ publish/documentation/configuration/ publish/documentation/latest/committers-guide/ publish/documentati

2014-10-10 Thread bmahler
Modified: mesos/site/source/documentation/latest/committers-guide.md URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/committers-guide.md?rev=1630961&r1=1630960&r2=1630961&view=diff == --- mesos/sit

svn commit: r1630961 [1/3] - in /mesos/site: ./ publish/ publish/documentation/committers-guide/ publish/documentation/configuration/ publish/documentation/latest/committers-guide/ publish/documentati

2014-10-10 Thread bmahler
Author: bmahler Date: Fri Oct 10 19:20:34 2014 New Revision: 1630961 URL: http://svn.apache.org/r1630961 Log: Added the committer's guide to the website. Modified: mesos/site/README.md mesos/site/publish/documentation/committers-guide/index.html mesos/site/publish/document

svn commit: r1630961 [2/3] - in /mesos/site: ./ publish/ publish/documentation/committers-guide/ publish/documentation/configuration/ publish/documentation/latest/committers-guide/ publish/documentati

2014-10-10 Thread bmahler
Modified: mesos/site/publish/sitemap.xml URL: http://svn.apache.org/viewvc/mesos/site/publish/sitemap.xml?rev=1630961&r1=1630960&r2=1630961&view=diff == --- mesos/site/publish/sitemap.xml (original) +++ mesos/site/publish/

svn commit: r1630962 - /mesos/site/source/documentation/latest.html.md

2014-10-10 Thread bmahler
Author: bmahler Date: Fri Oct 10 19:24:59 2014 New Revision: 1630962 URL: http://svn.apache.org/r1630962 Log: Added the committer's guide to the documentation index. Modified: mesos/site/source/documentation/latest.html.md Modified: mesos/site/source/documentation/latest.html.md URL:

svn commit: r1630963 - /mesos/site/source/documentation/latest.html.md

2014-10-10 Thread bmahler
Author: bmahler Date: Fri Oct 10 19:26:01 2014 New Revision: 1630963 URL: http://svn.apache.org/r1630963 Log: Publishing website. Modified: mesos/site/source/documentation/latest.html.md Modified: mesos/site/source/documentation/latest.html.md URL: http://svn.apache.org/viewvc/mesos/site

git commit: Added committer's guide to the documentation index.

2014-10-10 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master aac1217ae -> 65b813603 Added committer's guide to the documentation index. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/65b81360 Tree: http://git-wip-us.apache.org/r

svn commit: r1630964 - in /mesos/site: publish/documentation/index.html publish/documentation/latest/index.html source/documentation/latest.html.md

2014-10-10 Thread bmahler
Author: bmahler Date: Fri Oct 10 19:45:43 2014 New Revision: 1630964 URL: http://svn.apache.org/r1630964 Log: Properly published the committer's guide. Modified: mesos/site/publish/documentation/index.html mesos/site/publish/documentation/latest/index.html mesos/site/s

git commit: Made the StatusUpdateManager injectable for mocking purposes.

2014-10-10 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 1d915a892 -> 88b56261e Made the StatusUpdateManager injectable for mocking purposes. Review: https://reviews.apache.org/r/26579 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/meso

git commit: Expose poll interval from the reaper.

2014-10-15 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master c46e502dc -> 4693728e4 Expose poll interval from the reaper. Review: https://reviews.apache.org/r/26229 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/4693728e Tree:

git commit: Fixed verify-reviews.py to not apply submitted reviews.

2014-10-16 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 32920c371 -> f6aa4b04d Fixed verify-reviews.py to not apply submitted reviews. Review: https://reviews.apache.org/r/26827 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/comm

[2/2] git commit: Added reconciliation to the documentation home.

2014-10-21 Thread bmahler
Added reconciliation to the documentation home. Review: https://reviews.apache.org/r/26670 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/616d4018 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/616d4018 Diff: http:/

[1/2] git commit: Added a document for reconciliation.

2014-10-21 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master bf2cc46f9 -> 616d40185 Added a document for reconciliation. Review: https://reviews.apache.org/r/26669 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/9ad4eada Tree: h

svn commit: r1633476 [2/3] - in /mesos/site: publish/ publish/documentation/ publish/documentation/latest/ publish/documentation/latest/reconciliation/ publish/documentation/latest/running-torque-or-m

2014-10-21 Thread bmahler
Modified: mesos/site/publish/sitemap.xml URL: http://svn.apache.org/viewvc/mesos/site/publish/sitemap.xml?rev=1633476&r1=1633475&r2=1633476&view=diff == --- mesos/site/publish/sitemap.xml (original) +++ mesos/site/publish/

svn commit: r1633476 [1/3] - in /mesos/site: publish/ publish/documentation/ publish/documentation/latest/ publish/documentation/latest/reconciliation/ publish/documentation/latest/running-torque-or-m

2014-10-21 Thread bmahler
Author: bmahler Date: Tue Oct 21 22:22:36 2014 New Revision: 1633476 URL: http://svn.apache.org/r1633476 Log: Added reconciliation documentation to the website. Added: mesos/site/publish/documentation/latest/reconciliation/ mesos/site/publish/documentation/latest/reconciliation

svn commit: r1633476 [3/3] - in /mesos/site: publish/ publish/documentation/ publish/documentation/latest/ publish/documentation/latest/reconciliation/ publish/documentation/latest/running-torque-or-m

2014-10-21 Thread bmahler
Modified: mesos/site/source/documentation/latest.html.md URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest.html.md?rev=1633476&r1=1633475&r2=1633476&view=diff == --- mesos/site/source/documentation/l

git commit: Used CHECK_SOME in module manager.

2014-10-23 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master fd0aa5248 -> 6e3ab0e5d Used CHECK_SOME in module manager. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/6e3ab0e5 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tr

[2/2] git commit: Revert "Switched path::join() to be variadic".

2014-10-23 Thread bmahler
Revert "Switched path::join() to be variadic". This reverts commit b08fccf8f5ea325b8c38055b5f2c03509744dd9b. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/26baf553 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/26b

[1/2] git commit: Revert "MESOS-1857 Fixed path::join() on older libstdc++ which lack back()."

2014-10-23 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 68d6b5e32 -> 26baf5531 Revert "MESOS-1857 Fixed path::join() on older libstdc++ which lack back()." This reverts commit ca2e8efcad7d312c6e93acd3546b6811a9f0df19. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://gi

git commit: Discard label/tag when parsing Version string.

2014-10-23 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 26baf5531 -> 717a56bce Discard label/tag when parsing Version string. Review: https://reviews.apache.org/r/27115 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/717a56

git commit: Required explicit run of the libprocess benchmark.

2014-10-24 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 695a73462 -> 169e969c9 Required explicit run of the libprocess benchmark. Review: https://reviews.apache.org/r/27130 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/16

mesos git commit: Added missing ZooKeeper patch file to the Makefile.

2014-11-11 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 6404a401c -> 8adb36e3f Added missing ZooKeeper patch file to the Makefile. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/8adb36e3 Tree: http://git-wip-us.apache.org/r

[3/3] mesos git commit: Added new test to the libprocess Makefile.

2014-11-13 Thread bmahler
Added new test to the libprocess Makefile. Review: https://reviews.apache.org/r/27946 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/7cec663f Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/7cec663f Diff: http://git

<    1   2   3   4   5   6   7   8   9   10   >