[20/27] mesos git commit: Added benchmarks for new registry operations.

2016-09-19 Thread vinodkone
Added benchmarks for new registry operations. These benchmarks cover: 1. The time taken to make all registered agents unreachable and then reachable. This is similar to what happens during a severe network partition. 2. The time taken to GC a significant fraction (50%) of the

[04/27] mesos git commit: Fixed outdated comment.

2016-09-19 Thread vinodkone
Fixed outdated comment. Review: https://reviews.apache.org/r/50844/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/06506fae Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/06506fae Diff:

[22/27] mesos git commit: Changed registrar operations to no longer depend on "strict" flag.

2016-09-19 Thread vinodkone
Changed registrar operations to no longer depend on "strict" flag. Registrar operations to admit and remove slaves now behave the same way, regardless of the value of the "strict" flag. This commit changes the behavior of these operations by enabling the previous "strict" behavior. For example,

[07/27] mesos git commit: Clarified a log message.

2016-09-19 Thread vinodkone
Clarified a log message. Review: https://reviews.apache.org/r/51020/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/df037de6 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/df037de6 Diff:

[17/27] mesos git commit: Updated master to send TASK_UNREACHABLE task state.

2016-09-19 Thread vinodkone
Updated master to send TASK_UNREACHABLE task state. When a task launched by a partition-aware framework is running on an agent that becomes partitioned from the master, the framework will now receive TASK_UNREACHABLE, not TASK_LOST. Similarly, when a partition-aware framework does explicit

[14/27] mesos git commit: Tweaked logging for UnregisterSlaveMessage handler.

2016-09-19 Thread vinodkone
Tweaked logging for UnregisterSlaveMessage handler. Remove a redundant log line: rather than logging when we receive an UnregisterSlaveMessage, it is sufficient to log how we handle that message. Also ensure that we log when ignoring an agent unregister message for an unknown agent, and do some

[26/27] mesos git commit: Removed "strictness" parameter from RegistrarTest and PartitionTest.

2016-09-19 Thread vinodkone
Removed "strictness" parameter from RegistrarTest and PartitionTest. This parameter should no longer result in any difference in behavior. Review: https://reviews.apache.org/r/51957/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[15/27] mesos git commit: Handled agents failing health checks multiple times.

2016-09-19 Thread vinodkone
Handled agents failing health checks multiple times. Now that we wait for the agent to be removed from the registry before stopping the SlaveObserver, it is possible for an agent to fail health checks multiple times if the registry operation takes longer than `agent_ping_timeout`. This commit

[16/27] mesos git commit: Fixed races between "unreachable" and "unregister" slave transitions.

2016-09-19 Thread vinodkone
Fixed races between "unreachable" and "unregister" slave transitions. Now that we update the registry before updating the master's state when performing these transitions, it is possible for the master to already be marking a slave unreachable when an `UnregisterSlaveMessage` is received, or vice

[01/27] mesos git commit: Changed master to allow partitioned slaves to reregister.

2016-09-19 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 34e1240d5 -> 29236068f Changed master to allow partitioned slaves to reregister. The previous behavior was to shutdown partitioned agents that attempt to reregister---unless the master has failed over, in which case the reregistration is

[09/27] mesos git commit: Change registry update order on removal, mark-unreachable.

2016-09-19 Thread vinodkone
Change registry update order on removal, mark-unreachable. This commit changes the master so that we always update the registry for an important change (e.g., removing an agent or marking an agent unreachable), before updating the important parts of the master's in-memory state (e.g., the

[13/27] mesos git commit: Added GC of unreachable agent metadata from the registry.

2016-09-19 Thread vinodkone
Added GC of unreachable agent metadata from the registry. Information about agents that have been marked unreachable is stored in the registry. Since the number of unreachable agents can grow without bound, this commit implements a garbage collection scheme. The current leading master will

[18/27] mesos git commit: Improved SlaveTest.HealthCheckUnregisterRace.

2016-09-19 Thread vinodkone
Improved SlaveTest.HealthCheckUnregisterRace. Now that the MockRegistrar has been introduced, we can assert that the master doesn't do a registry operation in certain situations. Review: https://reviews.apache.org/r/51845/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[27/27] mesos git commit: Removed use of "--registry_strict" master flag.

2016-09-19 Thread vinodkone
Removed use of "--registry_strict" master flag. The flag will remain for a few more months per the deprecation policy, but we no longer need to set it in the unit tests. Providing an extensive usage summary in "--help" output also doesn't seem useful. Review: https://reviews.apache.org/r/51958/

[24/27] mesos git commit: Removed dependency on "registry_strict" in master failover.

2016-09-19 Thread vinodkone
Removed dependency on "registry_strict" in master failover. When the master fails over, agents have `agent_reregister_timeout` to reregister with the new master. Any agents that fail to reregister within the timeout will be marked unreachable in the registry. Previously, frameworks would only

[25/27] mesos git commit: Squelched GMock warning in MasterTest.RecoveredSlaveCanReregister.

2016-09-19 Thread vinodkone
Squelched GMock warning in MasterTest.RecoveredSlaveCanReregister. After the slave reregisters, the framework might receive an offer for the resources on that slave. Review: https://reviews.apache.org/r/51956/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[11/27] mesos git commit: Adjusted existing tests to use MockRegistrar.

2016-09-19 Thread vinodkone
Adjusted existing tests to use MockRegistrar. This means that `Master::_reregisterSlave` can be made private. Review: https://reviews.apache.org/r/51376/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/87b94314 Tree:

[06/27] mesos git commit: Added more assertions to the master.

2016-09-19 Thread vinodkone
Added more assertions to the master. Review: https://reviews.apache.org/r/50846/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/3cecdbdd Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/3cecdbdd Diff:

[12/27] mesos git commit: Added test for HTTP endpoints during slave removal.

2016-09-19 Thread vinodkone
Added test for HTTP endpoints during slave removal. When a slave is being removed but before the registry operation to remove it has completed, querying the HTTP endpoints at the master should not indicate that the slave has been removed yet. This is important because the registry update might

[23/27] mesos git commit: Removed the "strict" flag from the registry operation interface.

2016-09-19 Thread vinodkone
Removed the "strict" flag from the registry operation interface. This flag is now ignored by all registry operations, so this should not result in a functional change. Review: https://reviews.apache.org/r/51954/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[05/27] mesos git commit: Added `unreachable_time` to TaskStatus.

2016-09-19 Thread vinodkone
Added `unreachable_time` to TaskStatus. This field contains the time at which the master marked an agent as unreachable. It will only be set for status updates (including reconciliation updates) that describe tasks running on unreachable (e.g., partitioned) agents. The intent is to help

[02/27] mesos git commit: Added test cases for PARTITION_AWARE behavior.

2016-09-19 Thread vinodkone
Added test cases for PARTITION_AWARE behavior. Review: https://reviews.apache.org/r/50706/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/9ba79dae Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/9ba79dae Diff:

[19/27] mesos git commit: Added test case for registry GC race condition.

2016-09-19 Thread vinodkone
Added test case for registry GC race condition. If GC occurs concurrently with another operation that changes the registry (e.g., reregistration of an agent that is also going to be removed by the GC operation), the GC might not be able to prune as many entries as expected from the registry.

[4/4] mesos git commit: Updated mesos-execute to support task groups.

2016-09-19 Thread vinodkone
Updated mesos-execute to support task groups. Through this patch, mesos-execute supports running task groups. Single task provided through command line option is supported as well for backward compatibility. Review: https://reviews.apache.org/r/51623/ Project:

[2/4] mesos git commit: Added parse function in flags namespace for v1::TaskGroupInfo protobuf.

2016-09-19 Thread vinodkone
Added parse function in flags namespace for v1::TaskGroupInfo protobuf. Review: https://reviews.apache.org/r/51991/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/9a9610d0 Tree:

[3/4] mesos git commit: Added << operator to stringify v1::TaskGroupInfo protobuf.

2016-09-19 Thread vinodkone
Added << operator to stringify v1::TaskGroupInfo protobuf. This patch is needed as Flags add() function needs to stringify v1::TaskGroupInfo before it is parsed to a variable of that type. Review: https://reviews.apache.org/r/51990/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo

mesos git commit: Updated master validation for DOCKER ContainerInfo in TaskGroup.

2016-09-13 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master aeaec8940 -> 9f73082aa Updated master validation for DOCKER ContainerInfo in TaskGroup. DOCKER as ContainerInfo Type for both task group executor as well as taskgroup task is currently not supported. Only MESOS as ContainerInfo Type is

mesos git commit: Fixed line wrap in executor.proto.

2016-09-13 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 2d18088c2 -> cde295a14 Fixed line wrap in executor.proto. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/cde295a1 Tree:

mesos git commit: Added meta tags in project website to support Twitter Cards.

2016-09-12 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 3562f95d0 -> 0b623f9d2 Added meta tags in project website to support Twitter Cards. Slack depends on Twitter Summary Card to show small preview logo. This patch followed https://dev.twitter.com/cards/types/summary to add meta tags in

mesos git commit: Exposed metrics in scheduler library.

2016-09-09 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 89b43e003 -> 02f13c9aa Exposed metrics in scheduler library. Exposed metrics scheduler/event_queue_messages(size of message queue) and scheduler/event_queue_dispatches (size of dispatch queue) in scheduler library. Review:

mesos git commit: Added documentation for Nvidia GPU support.

2016-09-08 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 207b3c0fa -> f6089bdf8 Added documentation for Nvidia GPU support. Review: https://reviews.apache.org/r/46220/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Updated TaskGroupValidationTest.TaskUsesNetworkInfo use two tasks.

2016-09-06 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 24f85fa8a -> 19c9f09ea Updated TaskGroupValidationTest.TaskUsesNetworkInfo use two tasks. This patch updated TaskGroupValidationTest.TaskUsesNetworkInfo to have two tasks in the task group. Review: https://reviews.apache.org/r/51481/

mesos git commit: Merged function "socket_send_data" logical judgment.

2016-09-06 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 559a7c9e6 -> 24f85fa8a Merged function "socket_send_data" logical judgment. Not a functional change. Refactored the code to read better. Review: https://reviews.apache.org/r/48200/ Project:

mesos git commit: Documentation: fix broken links.

2016-09-06 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master b4441a4cb -> 8075cd59c Documentation: fix broken links. \* Remove references to github.com (contains /blob/master..) \* site Rakefile now handle links contained in HTML table The link to github.com in \`submitting-a-patch.md\` was let on

mesos git commit: Updated Mesos version in getting started guide.

2016-09-05 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 3a5b5ade2 -> 3bb51c3f7 Updated Mesos version in getting started guide. Review: https://reviews.apache.org/r/51571/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Added test case TaskGroupValidationTest.TaskUsesExecutor.

2016-08-26 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 47c2607f1 -> bda9a5087 Added test case TaskGroupValidationTest.TaskUsesExecutor. Review: https://reviews.apache.org/r/51472/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[5/6] mesos git commit: Removed a no-longer-relevant test.

2016-08-26 Thread vinodkone
Removed a no-longer-relevant test. The behavior this test is trying to validate (slaves receive a `ShutdownMessage` if they attempt to reregister after failing health checks) will be changed shortly. Moreover, the new behavior is already covered by other test cases. Review:

[1/6] mesos git commit: Added new TaskState values and PARTITION_AWARE capability.

2016-08-26 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 8ab7a6f4d -> 8330e99f6 Added new TaskState values and PARTITION_AWARE capability. TASK_DROPPED, TASK_UNREACHABLE, TASK_GONE, TASK_GONE_BY_OPERATOR, and TASK_UNKNOWN. These values are intended to replace the existing TASK_LOST state by

[3/6] mesos git commit: Added registrar operations for marking agents (un-)reachable.

2016-08-26 Thread vinodkone
Added registrar operations for marking agents (un-)reachable. Review: https://reviews.apache.org/r/50701/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/af496f3a Tree:

[4/6] mesos git commit: Renamed metrics from "slave_shutdowns" to "slave_unreachable".

2016-08-26 Thread vinodkone
Renamed metrics from "slave_shutdowns" to "slave_unreachable". The master will shortly be changed to no longer shutdown unhealthy agents, so the previous metric name is no longer accurate. The old metric names have been kept for backwards compatibility, but they are no longer updated (i.e., they

[2/6] mesos git commit: Added a list of "unreachable" agents to the registry.

2016-08-26 Thread vinodkone
Added a list of "unreachable" agents to the registry. These are agents that have failed health checks. Review: https://reviews.apache.org/r/50700/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/54059140 Tree:

[6/6] mesos git commit: Made a few minor tweaks to comments.

2016-08-26 Thread vinodkone
Made a few minor tweaks to comments. Review: https://reviews.apache.org/r/50704/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/8330e99f Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/8330e99f Diff:

svn commit: r1757930 - in /mesos/site/publish: api/latest/c++/ documentation/external-containerizer/ documentation/latest/external-containerizer/

2016-08-26 Thread vinodkone
Author: vinodkone Date: Fri Aug 26 21:46:06 2016 New Revision: 1757930 URL: http://svn.apache.org/viewvc?rev=1757930=rev Log: Removed missing files. Removed: mesos/site/publish/api/latest/c++/classSetnsTestHelper-members.html mesos/site/publish/api/latest/c++/classSetnsTestHelper.html

svn commit: r1757929 - in /mesos/site/publish: ./ api/latest/c++/ api/latest/java/ api/latest/java/org/apache/mesos/ blog/ blog/mesos-1-0-0-released/ blog/mesos-1-0-1-released/ documentation/ document

2016-08-26 Thread vinodkone
Author: vinodkone Date: Fri Aug 26 21:41:17 2016 New Revision: 1757929 URL: http://svn.apache.org/viewvc?rev=1757929=rev Log: Updated website for 1.0.1. [This commit notification would consist of 133 parts, which exceeds the limit of 50 ones, so it was shortened to the summary.]

mesos git commit: Fixed white space in 1.0.1 blog post.

2016-08-26 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 2d7bb9dfd -> 8ab7a6f4d Fixed white space in 1.0.1 blog post. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/8ab7a6f4 Tree:

mesos git commit: Added validation test for task group task using NetworkInfos.

2016-08-26 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 7429846df -> 2d7bb9dfd Added validation test for task group task using NetworkInfos. NetworkInfos can only be set on the task group executor. Review: https://reviews.apache.org/r/51437 Project:

[2/2] mesos git commit: Fixed typo for the comments of UnauthorizedTaskGroup.

2016-08-26 Thread vinodkone
Fixed typo for the comments of UnauthorizedTaskGroup. Review: https://reviews.apache.org/r/51455/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/7429846d Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/7429846d

[1/2] mesos git commit: Added test case MasterAuthorizationTest.KillPendingTaskInTaskGroup.

2016-08-26 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master dbfbe6697 -> 7429846df Added test case MasterAuthorizationTest.KillPendingTaskInTaskGroup. Review: https://reviews.apache.org/r/51451/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Killed a line in master/validation.cpp.

2016-08-25 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master f3181999f -> 79b6a9e38 Killed a line in master/validation.cpp. Review: https://reviews.apache.org/r/51447/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/79b6a9e3

mesos git commit: Added test case MasterAuthorizationTest, UnauthorizedTaskGroup.

2016-08-25 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 4e8a23411 -> 3ec608018 Added test case MasterAuthorizationTest, UnauthorizedTaskGroup. Review: https://reviews.apache.org/r/51433/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Added test case for TaskGroupValidationTest.ExecutorWithoutFrameworkId.

2016-08-25 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master ae513df1e -> 711797086 Added test case for TaskGroupValidationTest.ExecutorWithoutFrameworkId. Review: https://reviews.apache.org/r/51432/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Added Aaron Wood to contributors.

2016-08-24 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master db4c8a0e9 -> 3674c58ad Added Aaron Wood to contributors. This closes #161 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/3674c58a Tree:

mesos git commit: Printed out the received stream ID in scheduler API.

2016-08-23 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master cb0f4a659 -> ba0e582b2 Printed out the received stream ID in scheduler API. This patch prints out the received stream ID in error output caused by Mesos-Stream-Id mismatch in calls to scheduler HTTP API. Expected stream ID is not printed

mesos git commit: Updated website for 1.0.1 release.

2016-08-23 Thread vinodkone
null +++ b/site/source/blog/2016-08-23-mesos-1-0-1-released.md @@ -0,0 +1,47 @@ +--- +layout: post +title: Apache Mesos 1.0.1 Released +permalink: /blog/mesos-1-0-1-released/ +published: true +post_author: + display_name: Vinod Kone + twitter: vinodkone +tags: Release +--- + +The latest Mesos release

[mesos] Git Push Summary

2016-08-23 Thread vinodkone
Repository: mesos Updated Tags: refs/tags/1.0.1 [created] 3611eb0b7

svn commit: r14925 - in /release/mesos/1.0.1: ./ mesos-1.0.1.tar.gz mesos-1.0.1.tar.gz.asc mesos-1.0.1.tar.gz.md5

2016-08-23 Thread vinodkone
Author: vinodkone Date: Wed Aug 24 01:06:47 2016 New Revision: 14925 Log: Adding mesos-1.0.1. Added: release/mesos/1.0.1/ release/mesos/1.0.1/mesos-1.0.1.tar.gz (with props) release/mesos/1.0.1/mesos-1.0.1.tar.gz.asc release/mesos/1.0.1/mesos-1.0.1.tar.gz.md5 Added: release

mesos git commit: Added Krzysztof Paprocki to contributors.

2016-08-23 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 963c1ff9c -> 3ed895e1e Added Krzysztof Paprocki to contributors. Added myself in order to be able to self-assign Jira. This closes #160 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[3/3] mesos git commit: Fixed indentation in master/validation.cpp.

2016-08-22 Thread vinodkone
Fixed indentation in master/validation.cpp. Review: https://reviews.apache.org/r/51247 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/47f2c218 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/47f2c218 Diff:

[1/3] mesos git commit: Added master validations for TaskGroup.

2016-08-22 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 4000fd31b -> 06c0e3e6e Added master validations for TaskGroup. The TaskGroup is considered invalid if any of the tasks or the executor is invalid. Review: https://reviews.apache.org/r/51270 Project:

[2/3] mesos git commit: Refactored task validations in master.

2016-08-22 Thread vinodkone
Refactored task validations in master. Refactored in such a way that most of the helper functions can be reused for doing task group validation. Note that there are no functional changes here only code movement. Review: https://reviews.apache.org/r/51248 Project:

[2/4] mesos git commit: Made `Offer::Operation::Type` optional with default `UNKNOWN`.

2016-08-15 Thread vinodkone
Made `Offer::Operation::Type` optional with default `UNKNOWN`. This is necessary to introduce new offer operations in a backwards compatible manner. See MESOS-4997 for context. Review: https://reviews.apache.org/r/51060 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[3/4] mesos git commit: Added LAUNCH_GROUP offer operation.

2016-08-15 Thread vinodkone
Added LAUNCH_GROUP offer operation. A scheduler can use the LAUNCH_GROUP offer operation to send a `TaskGroup` to an executor. Review: https://reviews.apache.org/r/51061 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[1/4] mesos git commit: Added LAUNCH_GROUP event to executor API.

2016-08-15 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master fc5f86ab0 -> 40115df30 Added LAUNCH_GROUP event to executor API. This event is used to deliver a task group atomically to an executor. Review: https://reviews.apache.org/r/51062 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo

mesos git commit: Propagated work_dir flag from local runs to agents/masters.

2016-08-10 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 683551c92 -> 1f988a35b Propagated work_dir flag from local runs to agents/masters. Review: https://reviews.apache.org/r/50003/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

svn commit: r14761 - in /dev/mesos/1.0.1-rc1: ./ mesos-1.0.1.tar.gz mesos-1.0.1.tar.gz.asc mesos-1.0.1.tar.gz.md5

2016-08-10 Thread vinodkone
Author: vinodkone Date: Thu Aug 11 00:29:32 2016 New Revision: 14761 Log: Adding mesos-1.0.1-rc1. Added: dev/mesos/1.0.1-rc1/ dev/mesos/1.0.1-rc1/mesos-1.0.1.tar.gz (with props) dev/mesos/1.0.1-rc1/mesos-1.0.1.tar.gz.asc dev/mesos/1.0.1-rc1/mesos-1.0.1.tar.gz.md5 Added: dev

[mesos] Git Push Summary

2016-08-10 Thread vinodkone
Repository: mesos Updated Tags: refs/tags/1.0.1-rc1 [created] 3611eb0b7

mesos git commit: Used MESOS_VERSION instead of fixed mesos version string.

2016-08-10 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/1.0.x 8c6e36600 -> 3611eb0b7 Used MESOS_VERSION instead of fixed mesos version string. Fixed the hard coded version string in GetAgents test in api_tests. Review: https://reviews.apache.org/r/49788/ Project:

mesos git commit: Updated version in configure.ac and CMakeLists.txt.

2016-08-10 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/1.0.x 69fe49dc1 -> 8c6e36600 Updated version in configure.ac and CMakeLists.txt. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/8c6e3660 Tree:

mesos git commit: Updated CHANGELOG for 1.0.1.

2016-08-10 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/1.0.x 4d76bb145 -> 69fe49dc1 Updated CHANGELOG for 1.0.1. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/69fe49dc Tree:

[2/2] mesos git commit: Updated CHANGELOG for 1.0.1.

2016-08-10 Thread vinodkone
Updated CHANGELOG for 1.0.1. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/853869eb Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/853869eb Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/853869eb Branch:

mesos git commit: Fixed typo for REX-Ray in 1.0 blog post.

2016-08-10 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 044450208 -> f7bc7e470 Fixed typo for REX-Ray in 1.0 blog post. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/f7bc7e47 Tree:

mesos git commit: Removed `test_containerizer.py` from src/Makefile.am.

2016-08-10 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master b2d83a3b8 -> 044450208 Removed `test_containerizer.py` from src/Makefile.am. This file was deleted when we removed the external containerizer. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Added coverity build to build_docker.sh.

2016-08-09 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master b0c86496e -> 705896003 Added coverity build to build_docker.sh. This review adds an coverity build option to build_docker.sh in order to enable regular coverity builds on the ASF infrastructure. Review: https://reviews.apache.org/r/50771/

mesos git commit: Added new contributor (Gaojin CAO).

2016-08-08 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master c81ddb641 -> ffafe9b23 Added new contributor (Gaojin CAO). Review: https://reviews.apache.org/r/50901/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/ffafe9b2 Tree:

mesos git commit: Renamed the filter for tests that depend on "perf".

2016-08-05 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 5220f7758 -> 50f591a78 Renamed the filter for tests that depend on "perf". Previously, any test case that had "Perf" in its name would only be run when the perf(1) command was installed. This is inconsistent with other name-based filters

[2/5] mesos git commit: Added more assertions to master code.

2016-08-05 Thread vinodkone
Added more assertions to master code. Review: https://reviews.apache.org/r/50416/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/60dbd347 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/60dbd347 Diff:

[4/5] mesos git commit: Cleaned up comments in fault tolerance tests.

2016-08-05 Thread vinodkone
Cleaned up comments in fault tolerance tests. Review: https://reviews.apache.org/r/50418/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/8a0b17a1 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/8a0b17a1 Diff:

[3/5] mesos git commit: Improved consistency of test code for partitioning an agent.

2016-08-05 Thread vinodkone
Improved consistency of test code for partitioning an agent. Removed unnecessary `Clock::settle` calls: `Clock::settle` should typically only be used when a test case does not have an easy way to wait for a _specific_ event to occur. In this case, `Clock::settle` was unnecessary because the test

[5/5] mesos git commit: Future-proofed some slave removal tests.

2016-08-05 Thread vinodkone
Future-proofed some slave removal tests. These tests relied on the implementation detail that when an agent is removed from the list of registered agents, the master sends a ShutdownSlaveMessage to the agent. That will change in the future (MESOS-4049). To prepare for this future planned

[1/5] mesos git commit: Added more expectations to TASK_LOST test cases.

2016-08-05 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master cb3ef91a6 -> 5220f7758 Added more expectations to TASK_LOST test cases. Check the reason and source of TASK_LOST status updates, replaced ASSERT_ with EXPECT_ in various places where EXPECT_ is more appropriate. Review:

[3/3] mesos git commit: Mesos-slave --help should not return as failed.

2016-08-04 Thread vinodkone
Mesos-slave --help should not return as failed. Doing a simple \`mesos-agent --help\` should return with exit_status=0. It's not the case since work_dir is considered as mandatory. Review: https://reviews.apache.org/r/50570/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[1/3] mesos git commit: Added MESOS-5922 and MESOS-5928 to CHANGELOG for 1.0.1.

2016-08-04 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/1.0.x c2e6cc649 -> 8abecbfe5 Added MESOS-5922 and MESOS-5928 to CHANGELOG for 1.0.1. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/8abecbfe Tree:

[1/2] mesos git commit: Mesos-slave --help should not return as failed.

2016-08-04 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 853821caf -> 335001ad2 Mesos-slave --help should not return as failed. Doing a simple \`mesos-agent --help\` should return with exit_status=0. It's not the case since work_dir is considered as mandatory. Review:

[2/2] mesos git commit: Moved check for '--version' in master and agent 'main.cpp'.

2016-08-04 Thread vinodkone
Moved check for '--version' in master and agent 'main.cpp'. The recent removal of the agent's default `work_dir` requires us to check for the presence of the `--version` flag before we check for errors in flag loading; this patch makes that change, and also moves the corresponding code in the

mesos git commit: Fixed the flaky test case `MasterAPITest.GetTasks`.

2016-07-27 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master bc2062791 -> beda6ffb7 Fixed the flaky test case `MasterAPITest.GetTasks`. This changes to wait for every `StatusUpdateAcknowledgementMessage` exactly in this test case to make sure they don't conflict each other. Review:

[2/2] mesos git commit: Fixed comment typos and whitespace infelicities.

2016-07-27 Thread vinodkone
Fixed comment typos and whitespace infelicities. Review: https://reviews.apache.org/r/50339/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/bc206279 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/bc206279 Diff:

[1/2] mesos git commit: Fixed flakiness in SlaveAuthorizerTest.ViewFlags.

2016-07-27 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master b8da3f67d -> bc2062791 Fixed flakiness in SlaveAuthorizerTest.ViewFlags. Review: https://reviews.apache.org/r/50338/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Set allocation level explicitly instead of implicitly in v1 api tests.

2016-07-27 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 380ec46f8 -> b8da3f67d Set allocation level explicitly instead of implicitly in v1 api tests. As discussed with Neil, we are setting low allocation level for ReserveResources and UnreserveResources operator api v1 tests explicitly instead

svn commit: r1754308 - in /mesos/site/publish/blog/mesos-1-0-0-released: ./ index.html

2016-07-27 Thread vinodkone
Author: vinodkone Date: Wed Jul 27 16:25:51 2016 New Revision: 1754308 URL: http://svn.apache.org/viewvc?rev=1754308=rev Log: Added 1.0 blog. Added: mesos/site/publish/blog/mesos-1-0-0-released/ mesos/site/publish/blog/mesos-1-0-0-released/index.html Added: mesos/site/publish/blog/mesos

svn commit: r1754298 [4/6] - in /mesos/site/publish: ./ api/latest/c++/ api/latest/java/ api/latest/java/org/apache/mesos/ blog/ documentation/api-client-libraries/ documentation/app-framework-develop

2016-07-27 Thread vinodkone
Modified: mesos/site/publish/api/latest/java/org/apache/mesos/Protos.Resource.DiskInfoOrBuilder.html URL: http://svn.apache.org/viewvc/mesos/site/publish/api/latest/java/org/apache/mesos/Protos.Resource.DiskInfoOrBuilder.html?rev=1754298=1754297=1754298=diff

svn commit: r1754298 [1/6] - in /mesos/site/publish: ./ api/latest/c++/ api/latest/java/ api/latest/java/org/apache/mesos/ blog/ documentation/api-client-libraries/ documentation/app-framework-develop

2016-07-27 Thread vinodkone
Author: vinodkone Date: Wed Jul 27 16:12:28 2016 New Revision: 1754298 URL: http://svn.apache.org/viewvc?rev=1754298=rev Log: Updated website for 1.0 Modified: mesos/site/publish/api/latest/c++/numify_8hpp_source.html mesos/site/publish/api/latest/java/allclasses-frame.html mesos

svn commit: r1754298 [3/6] - in /mesos/site/publish: ./ api/latest/c++/ api/latest/java/ api/latest/java/org/apache/mesos/ blog/ documentation/api-client-libraries/ documentation/app-framework-develop

2016-07-27 Thread vinodkone
Modified: mesos/site/publish/api/latest/java/org/apache/mesos/Protos.LabelOrBuilder.html URL: http://svn.apache.org/viewvc/mesos/site/publish/api/latest/java/org/apache/mesos/Protos.LabelOrBuilder.html?rev=1754298=1754297=1754298=diff

svn commit: r1754298 [6/6] - in /mesos/site/publish: ./ api/latest/c++/ api/latest/java/ api/latest/java/org/apache/mesos/ blog/ documentation/api-client-libraries/ documentation/app-framework-develop

2016-07-27 Thread vinodkone
Modified: mesos/site/publish/sitemap.xml URL: http://svn.apache.org/viewvc/mesos/site/publish/sitemap.xml?rev=1754298=1754297=1754298=diff == --- mesos/site/publish/sitemap.xml (original) +++

svn commit: r1754298 [2/6] - in /mesos/site/publish: ./ api/latest/c++/ api/latest/java/ api/latest/java/org/apache/mesos/ blog/ documentation/api-client-libraries/ documentation/app-framework-develop

2016-07-27 Thread vinodkone
Modified: mesos/site/publish/api/latest/java/org/apache/mesos/Protos.ContainerInfo.DockerInfo.Network.html URL: http://svn.apache.org/viewvc/mesos/site/publish/api/latest/java/org/apache/mesos/Protos.ContainerInfo.DockerInfo.Network.html?rev=1754298=1754297=1754298=diff

svn commit: r1754298 [5/6] - in /mesos/site/publish: ./ api/latest/c++/ api/latest/java/ api/latest/java/org/apache/mesos/ blog/ documentation/api-client-libraries/ documentation/app-framework-develop

2016-07-27 Thread vinodkone
Modified: mesos/site/publish/api/latest/java/org/apache/mesos/Protos.Volume.Mode.html URL: http://svn.apache.org/viewvc/mesos/site/publish/api/latest/java/org/apache/mesos/Protos.Volume.Mode.html?rev=1754298=1754297=1754298=diff

[1/2] mesos git commit: Updated website for 1.0.

2016-07-27 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master e04b82737 -> 6d63c6236 Updated website for 1.0. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/019c96e8 Tree:

[2/2] mesos git commit: Added 1.0 blogpost.

2016-07-27 Thread vinodkone
27-mesos-1-0-0-released.md @@ -0,0 +1,63 @@ +--- +layout: post +title: Apache Mesos 1.0.0 Released +permalink: /blog/mesos-1-0-0-released/ +published: true +post_author: + display_name: Vinod Kone + twitter: vinodkone +tags: Release +--- + +Mesos 1.0 release is finally here for [do

[mesos] Git Push Summary

2016-07-27 Thread vinodkone
Repository: mesos Updated Tags: refs/tags/1.0.0 [created] c9b70582e

svn commit: r14557 - in /release/mesos/1.0.0: ./ mesos-1.0.0.tar.gz mesos-1.0.0.tar.gz.asc mesos-1.0.0.tar.gz.md5

2016-07-27 Thread vinodkone
Author: vinodkone Date: Wed Jul 27 07:22:19 2016 New Revision: 14557 Log: Adding mesos-1.0.0. Added: release/mesos/1.0.0/ release/mesos/1.0.0/mesos-1.0.0.tar.gz (with props) release/mesos/1.0.0/mesos-1.0.0.tar.gz.asc release/mesos/1.0.0/mesos-1.0.0.tar.gz.md5 Added: release

svn commit: r1754060 - in /mesos/site/publish/api/latest/c++: cgroups_8hpp.html cgroups_8hpp_source.html classScope-members.html classScope.html runtime_8hpp.html runtime_8hpp_source.html scope_8hpp.h

2016-07-25 Thread vinodkone
Author: vinodkone Date: Tue Jul 26 00:20:32 2016 New Revision: 1754060 URL: http://svn.apache.org/viewvc?rev=1754060=rev Log: Removed missing files. Removed: mesos/site/publish/api/latest/c++/cgroups_8hpp.html mesos/site/publish/api/latest/c++/cgroups_8hpp_source.html mesos/site

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