From: "tj@kernel.org" <tj@kernel.org>
To: "Wlodarczyk, Bertrand" <bertrand.wlodarczyk@intel.com>
Cc: Shakeel Butt <shakeel.butt@linux.dev>,
"hannes@cmpxchg.org" <hannes@cmpxchg.org>,
"mkoutny@suse.com" <mkoutny@suse.com>,
"cgroups@vger.kernel.org" <cgroups@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"inwardvessel@gmail.com" <inwardvessel@gmail.com>
Subject: Re: [PATCH v2] cgroup/rstat: change cgroup_base_stat to atomic
Date: Mon, 30 Jun 2025 05:48:13 -1000 [thread overview]
Message-ID: <aGKxvQdAZ-vSd48D@slm.duckdns.org> (raw)
In-Reply-To: <CH3PR11MB7894D2570AEA9AB67DBF706DF146A@CH3PR11MB7894.namprd11.prod.outlook.com>
Hello,
On Mon, Jun 30, 2025 at 02:25:27PM +0000, Wlodarczyk, Bertrand wrote:
> > > Also the response to the tearing issue explained by JP is not satisfying.
> >
> > In other words, the claim is: "it's better to stall other cpus in
> > spinlock plus disable IRQ every time in order to serve outdated snapshot instead of providing user to the freshest statistics much, much faster".
> > In term of statistics, freshest data served fast to the user is, in my opinion, better behavior.
>
> > This is a false choice, I think. e.g. We can easily use seqlock to remove strict synchronization only from user side, right?
>
> Yes, that's second possibility to solve a problem.
> I choose atomics approach because, in my opinion, incremental statistics are somewhat natural use case for them.
They're good for individual counters but I'm not sure they're natural fit
for a group of stats. A series of atomic ops can be significantly more
expensive than locked updates and it also comes with problems like split
updates as discussed in this thread. I think most of resistance is from the
use of atomics. Can you please try a different approach?
> > I wouldn't be addressing this issue if there were no customers
> > affected by rstat latency in multi-container multi-cpu scenarios.
>
> > Out of curiosity, can you explain the case that you observed in more detail?
> > What were the customer doing?
>
> Single hierarchy, hundreds of the containers on one server, multiple independent owners.
> Some of them wants to have current stats available in their webgui.
> They are hammering the stats for their cgroups.
> Server experience inefficiencies, perf shows visible percentage of cpu cycles spent in cgroup_rstat_flush.
>
> I prepared benchmark which can be example of the issue faced by the customer:
> https://gist.github.com/bwlodarcz/21bbc24813bced8e6ffc9e5ca3150fcc
>
> qemu vm:
> +---------+---------+
> mean (s) |8dcb0ed8 | patched |
> +--------------+---------+---------+
> |cpu, KCSAN on |16.13* |3.75 |
> +--------------+---------+---------+
> |cpu, KCSAN off|4.45 |0.81 |
> +--------------+---------+---------+
> *race condition still present
>
> It's not hammering the lock so much as previous stressor, so the results are better for for-6.17 branch.
> The customer has much bigger scale than 4 cgroups in benchmark.
> There are workarounds implemented so it's not that hot now (for them).
> Anyway, I think it's worth to try improving the scalability situation,
> especially that as far as I see it, there are no downsides.
>
> There also reports about similar problems in memory rstats but I didn't look on them yet.
Yeah, I saw the benchmark but I was more curious what actual use case would
lead to behaviors like that because you'd have to hammer on those stats
really hard for this to be a problem. In most use cases that I'm aware of,
the polling frequencies of these stats are >= 1sec. I guess the users in
your use case were banging on them way harder, at least previously.
I don't think switching to atomics is a good idea, but improving the read
scalability would definitely be nice.
Thanks.
--
tejun
next prev parent reply other threads:[~2025-06-30 15:48 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-24 14:45 [PATCH v2] cgroup/rstat: change cgroup_base_stat to atomic Bertrand Wlodarczyk
2025-06-26 19:15 ` Shakeel Butt
2025-06-27 13:15 ` Wlodarczyk, Bertrand
2025-06-27 16:50 ` tj
2025-06-30 14:25 ` Wlodarczyk, Bertrand
2025-06-30 15:48 ` tj [this message]
2025-07-04 13:13 ` Wlodarczyk, Bertrand
2025-07-04 17:57 ` tj
2025-07-21 11:48 ` Wlodarczyk, Bertrand
2025-06-27 16:55 ` JP Kobryn
2025-06-27 17:17 ` Shakeel Butt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aGKxvQdAZ-vSd48D@slm.duckdns.org \
--to=tj@kernel.org \
--cc=bertrand.wlodarczyk@intel.com \
--cc=cgroups@vger.kernel.org \
--cc=hannes@cmpxchg.org \
--cc=inwardvessel@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mkoutny@suse.com \
--cc=shakeel.butt@linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.