[GitHub] mesos pull request #279: WIP: Remove unknown unreachable tasks when agent re...

2018-04-23 Thread m9a
Github user m9a closed the pull request at:

https://github.com/apache/mesos/pull/279


---


[GitHub] mesos issue #279: WIP: Remove unknown unreachable tasks when agent re-regist...

2018-04-23 Thread m9a
Github user m9a commented on the issue:

https://github.com/apache/mesos/pull/279
  
Closing this in favor of 
https://reviews.apache.org/r/66644/diff/1#index_header


---


[GitHub] mesos issue #279: WIP: Remove unknown unreachable tasks when agent re-regist...

2018-04-03 Thread m9a
Github user m9a commented on the issue:

https://github.com/apache/mesos/pull/279
  
@Gilbert88, @xujyan Sure, I will check about the rbt issue on slack.


---


[GitHub] mesos issue #279: WIP: Remove unknown unreachable tasks when agent re-regist...

2018-04-03 Thread m9a
Github user m9a commented on the issue:

https://github.com/apache/mesos/pull/279
  
The JIRA for this PR: https://issues.apache.org/jira/browse/MESOS-8750
Since @xujyan is shepherding it I intended to set him as the reviewer but 
it doesn't look like I can change those fields on the PR.


---


[GitHub] mesos pull request #279: WIP: Remove unknown unreachable tasks when agent re...

2018-03-30 Thread m9a
GitHub user m9a opened a pull request:

https://github.com/apache/mesos/pull/279

WIP: Remove unknown unreachable tasks when agent re-registers.

A RunTask messsage could get dropped for an agent while it's
disconnected from the master and when such an agent goes unreachable
then this dropped task message gets added to the unreachable tasks.
When the agent re-registers, the master sends status updates for the
tasks that the agent reported when re-registering and these tasks are
also removed from the unreachableTasks on the framework but since the
agent doesn't know about the dropped task so it doesn't get removed
from the unreachableTasks leading to a check failure when
this inconsistency is detected during framework removal.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/m9a/mesos bug-fix

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/mesos/pull/279.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #279


commit 76c0c34bb4f676b960532d6d0dd86308cd59b0ad
Author: Megha Sharma <msharma3@...>
Date:   2018-03-16T00:27:06Z

Remove unknown unreachable tasks when agent re-registers.

A RunTask messsage could get dropped for an agent while it's
disconnected from the master and when such an agent goes unreachable
then this dropped task message gets added to the unreachable tasks.
When the agent re-registers, the master sends status updates for the
tasks that the agent reported when re-registering and these tasks are
also removed from the unreachableTasks on the framework but since the
agent doesn't know about the dropped task so it doesn't get removed
from the unreachableTasks leading to a check failure when
this inconsistency is detected during framework removal.




---