* Re: [PATCH RFC 0/9] cgroups: add res_counter_write_u64() API
[not found] ` <1386884118-14972-1-git-send-email-dwight.engen-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
@ 2013-12-23 12:54 ` Frederic Weisbecker
[not found] ` <20131223125410.GA585-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Frederic Weisbecker @ 2013-12-23 12:54 UTC (permalink / raw)
To: Dwight Engen, Tejun Heo, Glauber Costa, Vladimir Davydov
Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
Max Kellermann, cgroups-u79uwXL29TY76Z2rM5mHXA
On Thu, Dec 12, 2013 at 04:35:09PM -0500, Dwight Engen wrote:
> Hello,
>
> I've seen that some sort of fork/task limiter has been proposed and
> discussed several times before. Despite the existance of kmem in memcg, a
> fork limiter is still often asked for by container users. Perhaps this is
> due to current granularity in kmem (ie. stack/struct task not split out from
> other slab allocations) but I believe it is just more natural for users to
> express a limit in terms of tasks.
>
> So what I've done is updated Frederic Weisbecker's task counter patchset and
> tried to address the concerns that I saw people had raised. This involved
> the following changes:
>
> - merged into cpuacct controller, as it seems there is a desire not to add
> new controllers, this controller is already heirarchical, and I feel
> limiting number of tasks/forks fits best here
> - included a fork_limit similar to the one Max Kellermann posted
> (https://lkml.org/lkml/2011/2/17/116) which is a use case not addressable
> with memcg
> - ala memcg kmem, for performance reasons don't account unless limit is set
> - ala memcg, allow usage to roll up to root (prevents warnings on
> uncharge), but still don't allow setting limits in root
> - changed the interface at fork()/exit(), adding
> can_fork()/cancel_can_fork() modeled on can_attach(). cgroup_fork()
> can now return failure to fork().
> - ran Frederics selftests, and added a couple more
>
> I also wrote a small fork micro benchmark to see how this change affected
> performance. I did 20 runs of 100000 fork/exit/waitpid, and took the
> average. Times are in seconds, base is without the change, cpuacct1 is with
> the change but no accounting be done (ie. no limit set), and cpuacct2 is
> with the test being in a cgroup 1 level deep.
>
> base cpuacct1 cpuaac2
> 5.59 5.59 5.64
>
> So I believe this change has minimal performance impact, especially when no
> limit is set.
Sorry for the late answer on this. I'm adding cgroup mailing list and a few
cgroups/kmem people in Cc.
This patchset was eventually abandoned because kmem became the prefered way to
limit the number of tasks that can be forked.
Have you tried it?
Thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH RFC 0/9] cgroups: add res_counter_write_u64() API
[not found] ` <20131223125410.GA585-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
@ 2014-01-26 15:56 ` Serge E. Hallyn
0 siblings, 0 replies; 2+ messages in thread
From: Serge E. Hallyn @ 2014-01-26 15:56 UTC (permalink / raw)
To: Frederic Weisbecker
Cc: Vladimir Davydov, Max Kellermann, Glauber Costa,
containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Tejun Heo,
cgroups-u79uwXL29TY76Z2rM5mHXA
Quoting Frederic Weisbecker (fweisbec-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org):
> On Thu, Dec 12, 2013 at 04:35:09PM -0500, Dwight Engen wrote:
> > Hello,
> >
> > I've seen that some sort of fork/task limiter has been proposed and
> > discussed several times before. Despite the existance of kmem in memcg, a
> > fork limiter is still often asked for by container users. Perhaps this is
> > due to current granularity in kmem (ie. stack/struct task not split out from
> > other slab allocations) but I believe it is just more natural for users to
> > express a limit in terms of tasks.
> >
> > So what I've done is updated Frederic Weisbecker's task counter patchset and
> > tried to address the concerns that I saw people had raised. This involved
> > the following changes:
> >
> > - merged into cpuacct controller, as it seems there is a desire not to add
> > new controllers, this controller is already heirarchical, and I feel
> > limiting number of tasks/forks fits best here
> > - included a fork_limit similar to the one Max Kellermann posted
> > (https://lkml.org/lkml/2011/2/17/116) which is a use case not addressable
> > with memcg
> > - ala memcg kmem, for performance reasons don't account unless limit is set
> > - ala memcg, allow usage to roll up to root (prevents warnings on
> > uncharge), but still don't allow setting limits in root
> > - changed the interface at fork()/exit(), adding
> > can_fork()/cancel_can_fork() modeled on can_attach(). cgroup_fork()
> > can now return failure to fork().
> > - ran Frederics selftests, and added a couple more
> >
> > I also wrote a small fork micro benchmark to see how this change affected
> > performance. I did 20 runs of 100000 fork/exit/waitpid, and took the
> > average. Times are in seconds, base is without the change, cpuacct1 is with
> > the change but no accounting be done (ie. no limit set), and cpuacct2 is
> > with the test being in a cgroup 1 level deep.
> >
> > base cpuacct1 cpuaac2
> > 5.59 5.59 5.64
> >
> > So I believe this change has minimal performance impact, especially when no
> > limit is set.
>
> Sorry for the late answer on this. I'm adding cgroup mailing list and a few
> cgroups/kmem people in Cc.
>
> This patchset was eventually abandoned because kmem became the prefered way to
> limit the number of tasks that can be forked.
>
> Have you tried it?
It seems like this could cause false positives if the cgroup was in
some other way using quite a bit of kernel memory (reading a big
ecryptfs file?). Certainly it would be a gross rather than fine-tuned
knob.
Have people actually used the kmem controller this way and found it
useful and effective? Is there any guidance on reasonable limits to
use?
-serge
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-01-26 15:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1386884118-14972-1-git-send-email-dwight.engen@oracle.com>
[not found] ` <1386884118-14972-1-git-send-email-dwight.engen-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2013-12-23 12:54 ` [PATCH RFC 0/9] cgroups: add res_counter_write_u64() API Frederic Weisbecker
[not found] ` <20131223125410.GA585-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2014-01-26 15:56 ` Serge E. Hallyn
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).