Skip to content

Instantly share code, notes, and snippets.

@Toufa7
Created July 24, 2023 14:55
Show Gist options
  • Save Toufa7/4b3be8bf37bba14bf572aef0a5c189e9 to your computer and use it in GitHub Desktop.
Save Toufa7/4b3be8bf37bba14bf572aef0a5c189e9 to your computer and use it in GitHub Desktop.
Control Groups
mount {
cpu = /sys/fs/cgroup/cpu;
memory = /sys/fs/cgroup/memory;
}
group foo {
cpu {
cpu.cfs_quota_us = 100000;
cpu.cfs_period_us = 1000000;
}
memory {
memory.limit_in_bytes = 512M;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment