diff options
author | Chris Down <chris@chrisdown.name> | 2018-12-03 14:38:06 +0000 |
---|---|---|
committer | Chris Down <chris@chrisdown.name> | 2018-12-03 15:40:31 +0000 |
commit | c72703e26d21cb4994f21ae50c4e18675b02ded3 (patch) | |
tree | c2f6cf0b7772548594323b2c98aa6bea387b303e /test/meson.build | |
parent | 4f6f62e468db358a25abf51668c881105b35dc24 (diff) | |
download | systemd-c72703e26d21cb4994f21ae50c4e18675b02ded3.tar.gz |
cgroup: Add DisableControllers= directive to disable controller in subtree
Some controllers (like the CPU controller) have a performance cost that
is non-trivial on certain workloads. While this can be mitigated and
improved to an extent, there will for some controllers always be some
overheads associated with the benefits gained from the controller.
Inside Facebook, the fix applied has been to disable the CPU controller
forcibly with `cgroup_disable=cpu` on the kernel command line.
This presents a problem: to disable or reenable the controller, a reboot
is required, but this is quite cumbersome and slow to do for many
thousands of machines, especially machines where disabling/enabling a
stateful service on a machine is a matter of several minutes.
Currently systemd provides some configuration knobs for these in the
form of `[Default]CPUAccounting`, `[Default]MemoryAccounting`, and the
like. The limitation of these is that Default*Accounting is overrideable
by individual services, of which any one could decide to reenable a
controller within the hierarchy at any point just by using a controller
feature implicitly (eg. `CPUWeight`), even if the use of that CPU
feature could just be opportunistic. Since many services are provided by
the distribution, or by upstream teams at a particular organisation,
it's not a sustainable solution to simply try to find and remove
offending directives from these units.
This commit presents a more direct solution -- a DisableControllers=
directive that forcibly disallows a controller from being enabled within
a subtree.
Diffstat (limited to 'test/meson.build')
-rw-r--r-- | test/meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/meson.build b/test/meson.build index bf02e39f43..d98bfb80d2 100644 --- a/test/meson.build +++ b/test/meson.build @@ -18,6 +18,8 @@ test_data_files = ''' hwdb/10-bad.hwdb journal-data/journal-1.txt journal-data/journal-2.txt + nomem.slice + nomemleaf.service parent-deep.slice parent.slice sched_idle_bad.service |