You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@mesos.apache.org by Mandeep Chadha <ma...@yahoo.com> on 2016/01/05 04:17:48 UTC

Re: Review Request 39060: Create master detector per url & not per framework

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/39060/
-----------------------------------------------------------

(Updated Jan. 5, 2016, 3:17 a.m.)


Review request for mesos and Joris Van Remoortere.


Bugs: MESOS-3595
    https://issues.apache.org/jira/browse/MESOS-3595


Repository: mesos


Description
-------

If the number of framework created exceeds the lib process
threads then during master failover the zookeeper updates can
cause deadlock.


Diffs (updated)
-----

  include/mesos/scheduler.hpp 049c041286f3167e79cc5ea8a9e0bf8d42569832 
  src/sched/sched.cpp 44eb4f50e8ed84297268d94a3a0320c843ff6d8c 
  src/tests/mesos.hpp a4811b0d8dee33ff2ca4968f532ce64b7ea95249 

Diff: https://reviews.apache.org/r/39060/diff/


Testing
-------

make check successful 
Created 100 framework instances on a 24 CPU machine. Master failover detected by the framework process and continue to work as expected.


Thanks,

Mandeep Chadha


Re: Review Request 39060: Create master detector per url & not per framework.

Posted by Joris Van Remoortere <jo...@gmail.com>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/39060/#review116314
-----------------------------------------------------------


Ship it!





src/sched/sched.cpp (line 167)
<https://reviews.apache.org/r/39060/#comment177359>

    i think we can call this `instance`, and name the internal static `singleton`?



src/sched/sched.cpp (line 1777)
<https://reviews.apache.org/r/39060/#comment177358>

    i don't think we need this extra new line.


- Joris Van Remoortere


On Jan. 5, 2016, 9:01 a.m., Mandeep Chadha wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/39060/
> -----------------------------------------------------------
> 
> (Updated Jan. 5, 2016, 9:01 a.m.)
> 
> 
> Review request for mesos and Joris Van Remoortere.
> 
> 
> Bugs: MESOS-3595
>     https://issues.apache.org/jira/browse/MESOS-3595
> 
> 
> Repository: mesos
> 
> 
> Description
> -------
> 
> If the number of framework created exceeds the lib process
> threads then during master failover the zookeeper updates can
> cause deadlock.
> 
> 
> Diffs
> -----
> 
>   include/mesos/scheduler.hpp 049c041286f3167e79cc5ea8a9e0bf8d42569832 
>   src/sched/sched.cpp 44eb4f50e8ed84297268d94a3a0320c843ff6d8c 
>   src/tests/mesos.hpp a4811b0d8dee33ff2ca4968f532ce64b7ea95249 
> 
> Diff: https://reviews.apache.org/r/39060/diff/
> 
> 
> Testing
> -------
> 
> make check successful 
> Created 100 framework instances on a 24 CPU machine. Master failover detected by the framework process and continue to work as expected.
> 
> 
> Thanks,
> 
> Mandeep Chadha
> 
>


Re: Review Request 39060: Create master detector per url & not per framework.

Posted by Mesos ReviewBot <re...@mesos.apache.org>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/39060/#review112848
-----------------------------------------------------------


Patch looks great!

Reviews applied: [39060]

Passed command: export OS=ubuntu:14.04;export CONFIGURATION="--verbose";export COMPILER=gcc; ./support/docker_build.sh

- Mesos ReviewBot


On Jan. 5, 2016, 9:01 a.m., Mandeep Chadha wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/39060/
> -----------------------------------------------------------
> 
> (Updated Jan. 5, 2016, 9:01 a.m.)
> 
> 
> Review request for mesos and Joris Van Remoortere.
> 
> 
> Bugs: MESOS-3595
>     https://issues.apache.org/jira/browse/MESOS-3595
> 
> 
> Repository: mesos
> 
> 
> Description
> -------
> 
> If the number of framework created exceeds the lib process
> threads then during master failover the zookeeper updates can
> cause deadlock.
> 
> 
> Diffs
> -----
> 
>   include/mesos/scheduler.hpp 049c041286f3167e79cc5ea8a9e0bf8d42569832 
>   src/sched/sched.cpp 44eb4f50e8ed84297268d94a3a0320c843ff6d8c 
>   src/tests/mesos.hpp a4811b0d8dee33ff2ca4968f532ce64b7ea95249 
> 
> Diff: https://reviews.apache.org/r/39060/diff/
> 
> 
> Testing
> -------
> 
> make check successful 
> Created 100 framework instances on a 24 CPU machine. Master failover detected by the framework process and continue to work as expected.
> 
> 
> Thanks,
> 
> Mandeep Chadha
> 
>


Re: Review Request 39060: Create master detector per url & not per framework.

Posted by Mandeep Chadha <ma...@yahoo.com>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/39060/
-----------------------------------------------------------

(Updated Jan. 5, 2016, 9:01 a.m.)


Review request for mesos and Joris Van Remoortere.


Summary (updated)
-----------------

Create master detector per url & not per framework.


Bugs: MESOS-3595
    https://issues.apache.org/jira/browse/MESOS-3595


Repository: mesos


Description
-------

If the number of framework created exceeds the lib process
threads then during master failover the zookeeper updates can
cause deadlock.


Diffs
-----

  include/mesos/scheduler.hpp 049c041286f3167e79cc5ea8a9e0bf8d42569832 
  src/sched/sched.cpp 44eb4f50e8ed84297268d94a3a0320c843ff6d8c 
  src/tests/mesos.hpp a4811b0d8dee33ff2ca4968f532ce64b7ea95249 

Diff: https://reviews.apache.org/r/39060/diff/


Testing
-------

make check successful 
Created 100 framework instances on a 24 CPU machine. Master failover detected by the framework process and continue to work as expected.


Thanks,

Mandeep Chadha


Re: Review Request 39060: Create master detector per url & not per framework

Posted by Mandeep Chadha <ma...@yahoo.com>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/39060/
-----------------------------------------------------------

(Updated Jan. 5, 2016, 8:48 a.m.)


Review request for mesos and Joris Van Remoortere.


Bugs: MESOS-3595
    https://issues.apache.org/jira/browse/MESOS-3595


Repository: mesos


Description
-------

If the number of framework created exceeds the lib process
threads then during master failover the zookeeper updates can
cause deadlock.


Diffs (updated)
-----

  include/mesos/scheduler.hpp 049c041286f3167e79cc5ea8a9e0bf8d42569832 
  src/sched/sched.cpp 44eb4f50e8ed84297268d94a3a0320c843ff6d8c 
  src/tests/mesos.hpp a4811b0d8dee33ff2ca4968f532ce64b7ea95249 

Diff: https://reviews.apache.org/r/39060/diff/


Testing
-------

make check successful 
Created 100 framework instances on a 24 CPU machine. Master failover detected by the framework process and continue to work as expected.


Thanks,

Mandeep Chadha


Re: Review Request 39060: Create master detector per url & not per framework

Posted by Mesos ReviewBot <re...@mesos.apache.org>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/39060/#review112792
-----------------------------------------------------------


Bad patch!

Reviews applied: [39060]

Failed command: ./support/apply-review.sh -n -r 39060

Error:
 2016-01-05 08:03:12 URL:https://reviews.apache.org/r/39060/diff/raw/ [5780/5780] -> "39060.patch" [1]
Total errors found: 0
Checking 3 files
Error: Commit message summary (the first line) must end in a period.

- Mesos ReviewBot


On Jan. 5, 2016, 3:17 a.m., Mandeep Chadha wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/39060/
> -----------------------------------------------------------
> 
> (Updated Jan. 5, 2016, 3:17 a.m.)
> 
> 
> Review request for mesos and Joris Van Remoortere.
> 
> 
> Bugs: MESOS-3595
>     https://issues.apache.org/jira/browse/MESOS-3595
> 
> 
> Repository: mesos
> 
> 
> Description
> -------
> 
> If the number of framework created exceeds the lib process
> threads then during master failover the zookeeper updates can
> cause deadlock.
> 
> 
> Diffs
> -----
> 
>   include/mesos/scheduler.hpp 049c041286f3167e79cc5ea8a9e0bf8d42569832 
>   src/sched/sched.cpp 44eb4f50e8ed84297268d94a3a0320c843ff6d8c 
>   src/tests/mesos.hpp a4811b0d8dee33ff2ca4968f532ce64b7ea95249 
> 
> Diff: https://reviews.apache.org/r/39060/diff/
> 
> 
> Testing
> -------
> 
> make check successful 
> Created 100 framework instances on a 24 CPU machine. Master failover detected by the framework process and continue to work as expected.
> 
> 
> Thanks,
> 
> Mandeep Chadha
> 
>