Kranz Korner

Random bits from a FLOSS geek

Resource control with systemd

with 3 comments

I’m receiving more requests for upload accounts to the Deb-o-Matic servers lately (yay!), but that means the resources need to be monitored and shared between the build daemons to prevent server lockups.

My servers are running systemd, so I decided to give systemd.resource-control a try. My goal was to assign lower CPU shares to the build processes (debomatic itself, sbuild, and all the related tools), in order to avoid blocking other important system services from being spawned when necessary.

I created a new slice, and set a lower CPU share weight:
$ cat /etc/systemd/system/debomatic.slice
[Slice]
CPUAccounting=true
CPUShares=512
$

Then, I assigned the slice to the service unit file controlling debomatic daemons by adding the Slice=debomatic.slice option under the Service directive.

That was not enough, though, as some processes were assigned to the user slice instead, which groups all the processes spawned by users:
systemd-cgls

This is probably because schroot spawns a login shell, and systemd considers it belonging to a different process group. So, I had to launch the command systemctl set-property user.slice CPUShares=512, so all processes belonging to the user.slice will receive the same share of the debomatic ones. I consider this a workaround, I’m open to suggestions how to properly solve this issue ๐Ÿ™‚

I’ll try to explore more options in the coming days, so I can improve my knowledge of systemd a little bit more ๐Ÿ™‚

Advertisement

Written by Luca Falavigna

02/09/2015 at 17:31

3 Responses

Subscribe to comments with RSS.

  1. I have read a few just right stuff here. Definitely price bookmarking for revisiting. I wonder how a lot attempt you set to make any such fantastic informative website.

    Joel Wollman

    25/08/2016 at 17:49

  2. Have you explored cross-architecture containers under systemd-nspawn ?

    Ritesh Raj Sarraf

    18/12/2016 at 14:26

  3. Iโ€™m not that much of a onlineinternet reader to be honest but your blogssites really nice, keep it up! I’ll go ahead and bookmark your sitewebsite to come back laterdown the roadin the futurelater on. CheersAll the bestMany thanks

    Hyman Brotzman

    03/11/2019 at 08:55


Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: