> On Oct. 20, 2016, 8:33 p.m., Jie Yu wrote:
> > src/linux/cgroups.hpp, line 227
> > <https://reviews.apache.org/r/51031/diff/14/?file=1541968#file1541968line227>
> >
> >     I would suggest we set default to true to match the previous semantics.
> 
> haosdent huang wrote:
>     Since `cgroups::create` is
>     
>     ```
>     Try<Nothing> create(
>         const std::string& hierarchy,
>         const std::string& cgroup,
>         bool recursive = false);
>     ```
>     
>     Is it better to keep consistent on `recursive` parameter?
> 
> Jiang Yan Xu wrote:
>     So Jie and I discussed on Slack. It's not obvious what the default for 
> the `get()` method should be non-recursive. Yes the asymmetry between 
> `create()` and `get()` feels inelegant. One way to fix this is to not have 
> defaults for both `create()` and `get()` at all but looking at 
> `os::mkdir(recursive=true)` and `os::rmdir(recursive=true)` I feel that 
> making `create()` and `get()` both default to `recursive` is probably the 
> most intuitive. We can follow up with another patch to turn `create()` to 
> default to `recursive=true`.

Oh, thx. Let me update and create a sperate ticket to trace `cgroups::create`


- haosdent


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


On Oct. 21, 2016, 1:15 a.m., haosdent huang wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/51031/
> -----------------------------------------------------------
> 
> (Updated Oct. 21, 2016, 1:15 a.m.)
> 
> 
> Review request for mesos, Gilbert Song, Jie Yu, Qian Zhang, Zhengju Sha, and 
> Jiang Yan Xu.
> 
> 
> Bugs: MESOS-6035
>     https://issues.apache.org/jira/browse/MESOS-6035
> 
> 
> Repository: mesos
> 
> 
> Description
> -------
> 
> In most cases, we just want to get the children cgroups instead of
> retrieve descendant cgroups recursively. We added an argument to
> `cgroups::get` to indicate whether to retrieve cgroups recursively and
> made non-recursive retrieve the default behaviour. This patch fixed
> some incorrect `TEST_CGROUPS_ROOT` checks as well.
> 
> 
> Diffs
> -----
> 
>   src/linux/cgroups.hpp cfce09cb57501f2c988a8d997d7c6150280ed53d 
>   src/linux/cgroups.cpp 630e2ec2d0eac2bb35488d0416883df1601224c8 
>   src/slave/containerizer/fetcher.cpp 
> ea8eaa6371fc322c240e17b4bb9ba417c45ceaca 
>   src/slave/containerizer/mesos/isolators/cgroups/cgroups.cpp 
> 2f6723c64261fb3295626d6479fe844fb23b0650 
>   src/slave/containerizer/mesos/linux_launcher.cpp 
> 0305d14c1f791c93edcd3b32786b483b15f40a2d 
>   src/tests/containerizer/cgroups_tests.cpp 
> 0afaec6ae948cabf1472bf01103210d8f9809cb1 
>   src/tests/containerizer/mesos_containerizer_tests.cpp 
> 4df537747d84daa68c29e2d05b22fa386a4a16db 
>   src/tests/mesos.cpp 2aae160fb941ab3672a5665ae27f517ff40600e2 
> 
> Diff: https://reviews.apache.org/r/51031/diff/
> 
> 
> Testing
> -------
> 
> 
> Thanks,
> 
> haosdent huang
> 
>

Reply via email to