Re: [PATCH 0/3] introduce memory.oom.group

From: David Rientjes
Date: Wed Aug 01 2018 - 17:51:30 EST


On Tue, 31 Jul 2018, Roman Gushchin wrote:

> > What's the plan with the cgroup aware oom killer? It has been sitting in
> > the -mm tree for ages with no clear path to being merged.
>
> It's because your nack, isn't it?
> Everybody else seem to be fine with it.
>

If they are fine with it, I'm not sure they have tested it :) Killing
entire cgroups needlessly for mempolicy oom kills that will not free
memory on target nodes is the first regression they may notice. It also
unnecessarily uses oom_score_adj settings only when attached to the root
mem cgroup. That may be fine in very specialized usecases but your bash
shell being considered equal to a 96GB cgroup isn't very useful. These
are all fixed in my follow-up patch series which you say you have reviewed
later in this email.

> > Are you planning on reviewing the patchset to fix the cgroup aware oom
> > killer at https://marc.info/?l=linux-kernel&m=153152325411865 which has
> > been waiting for feedback since March?
> >
>
> I already did.
> As I said, I find the proposed oom_policy interface confusing.
> I'm not sure I understand why some memcg OOMs should be handled
> by memcg-aware OOMs, while other by the traditional per-process
> logic; and why this should be set on the OOMing memcg.
> IMO this adds nothing but confusion.
>

If your entire review was the email to a single patch, I misinterpreted
that as the entire review not being done, sorry. I volunteered to
separate out the logic to determine if a cgroup should be considered on
its own (kill the largest cgroup on the system) or whether to consider
subtree usage as well into its own tunable. I haven't received an
answer, yet, but it's a trivial patch on top of my series if you prefer.
Just let me know so we can make progress.

> it doesn't look nice to me (neither I'm fan of the mount option).
> If you need an option to evaluate a cgroup as a whole, but kill
> only one task inside (the ability we've discussed before),
> let's make it clear. It's possible with the new memory.oom.group.
>

The purpose is for subtrees delegated to users so that they can continue
to expect the same process being oom killed, with oom_score_adj
respected, even though the ancestor oom policy is for cgroup aware
targeting. It is perfectly legitimate, and necessary, for a user who
controls their own subtree to prefer killing of the single largest process
as it has always been done. Secondary to that is their ability to
influence the decision with oom_score_adj, which they lose without my
patches.

> Patches which adjust root memory cgroup accounting and NUMA
> handling should be handled separately, they are really not
> about the interface. I've nothing against them.
>

That's good to know, it would be helpful if you would ack the patches that
you are not objecting to. Your feedback about the overloading of "cgroup"
and "tree" is well received and I can easily separate that into a tunable
as I said. I do not know of any user that would want to specify "tree"
without having cgroup aware behavior, however. If you would prefer this,
please let me know!

> Anyway, at this point I really think that this patch (memory.oom.group)
> is a reasonable way forward. It implements a useful and complete feature,
> doesn't block any further development and has a clean interface.
> So, you can build memory.oom.policy on top of it.
> Does this sound good?
>

I have no objection to this series, of course. The functionality of group
oom was unchanged in my series. I'd very much appreciate a review of my
patchset, though, so the cgroup-aware policy can be merged as well.