cgroups
Original author(s) | Paul Menage, Rohit Seth |
---|---|
Developer(s) | kernel.org (Tejun Heo et al.) and freedesktop.org |
Initial release | 2007 |
Written in | C |
Operating system | Linux |
Type | System software |
License | GPL and LGPL |
Website |
www |
cgroups (abbreviated from control groups) is a Linux kernel feature that limits, accounts for, and isolates the resource usage (CPU, memory, disk I/O, network, etc.) of a collection of processes.
Engineers at Google (primarily Paul Menage and Rohit Seth) started the work on this feature in 2006, under the name "process containers".[1] In late 2007 the nomenclature changed to "control groups" due to the confusion caused by multiple meanings of the term "container" in the Linux kernel context, and control-group functionality merged into kernel version 2.6.24.[2] Since then, developers have added many new features and controllers, such as support for kernfs,[3] firewalling,[4] and unified hierarchy.[5]
Feature
One of the design goals of cgroups is to provide a unified interface to many different use cases, from controlling single processes (by using nice, for example) to whole operating system-level virtualization (as provided by OpenVZ, Linux-VServer or LXC, for example). Cgroups provides:
- Resource Limiting: groups can be set to not exceed a configured memory limit, which also includes the file system cache[6][7]
- Prioritization: some groups may get a larger share of CPU utilization[8] or disk I/O throughput[9]
- Accounting: measures how much resources certain systems use, which may be used, for example, for billing purposes[10]
- Control: freezing the groups of processes, their checkpointing and restarting[10]
Use
A control group (abbreviated as cgroup) is a collection of processes that are bound by the same criteria and associated with a set of parameters or limits. These groups can be hierarchical, meaning that each group inherits limits from its parent group. The kernel provides access to multiple controllers (also called subsystems) through the cgroup interface;[2] for example, the "memory" controller limits memory use, "cpuacct" accounts CPU usage, etc.
Control groups can be used in multiple ways:
- By accessing the cgroup virtual file system manually.
- By creating and managing groups on the fly using tools like cgcreate, cgexec, and cgclassify (from libcgroup).
- Through the "rules engine daemon" that can automatically move processes of certain users, groups, or commands to cgroups as specified in its configuration.
- Indirectly through other software that uses cgroups, such as Docker, Linux Containers (LXC) virtualization,[11] libvirt, systemd, Open Grid Scheduler/Grid Engine,[12] and Google's lmctfy.
The Linux kernel documentation contains full technical details of the setup and use of control groups.[13]
Redesign
Redesign of cgroups started in 2013,[14] with additional changes brought by versions 3.15 and 3.16 of the Linux kernel.[15][16][17]
Namespace isolation
While not technically part of the cgroups work, a related feature of the Linux kernel is namespace isolation, where groups of processes are separated such that they cannot "see" resources in other groups. For example, a PID namespace provides a separate enumeration of process identifiers within each namespace. Also available are mount, UTS, network and SysV IPC namespaces.
- The PID namespace provides isolation for the allocation of process identifiers (PIDs), lists of processes and their details. While the new namespace is isolated from other siblings, processes in its "parent" namespace still see all processes in child namespaces—albeit with different PID numbers.[18]
- Network namespace isolates the network interface controllers (physical or virtual), iptables firewall rules, routing tables etc. Network namespaces can be connected with each other using the "veth" virtual Ethernet device.[19]
- "UTS" namespace allows changing the hostname.
- Mount namespace allows creating a different file system layout, or making certain mount points read-only.[20]
- IPC namespace isolates the System V inter-process communication between namespaces.
- User namespace isolates the user IDs between namespaces.[21]
Namespaces are created with the "unshare" command or syscall, or as new flags in a "clone" syscall.[22]
The "ns" subsystem was added early in cgroups development to integrate namespaces and control groups. If the "ns" cgroup was mounted, each namespace would also create a new group in the cgroup hierarchy. This was an experiment that was later judged to be a poor fit for the cgroups API, and removed from the kernel.
Linux namespaces were inspired by the more general namespace functionality used heavily throughout Plan 9 from Bell Labs.[23]
Unified hierarchy
Whenever designing software, a software engineer seeks solutions which overall best address exigencies regarding stability, security, performance, as well as maintainability, programmability (API) and usability (ABI). By their nature, these exigencies balance each other, e.g., a mighty API to user space, that doesn't offer too much functionality, but carelessly exposes some key inner working, might seriously compromise stability and security. That is especially true if that software is part of the Linux kernel.
Tejun Heo decided to alter cgroups to prevent these scenarios, designing and implementing a unified hierarchy with only one user space entity that has exclusive access to the facilities offered by cgroups.
Kernfs was introduced into the Linux kernel with version 3.14, the main author being Tejun Heo.[24] One of the main motivators for a separate kernfs is the cgroups file system. Kernfs is basically created by splitting off some of the sysfs logic into an independent entity so that other kernel subsystems can more easily implement their own virtual file system with handling for device connect and disconnect, dynamic creation and removal as needed or unneeded, and other attributes. Redesign continued into version 3.15 of the Linux kernel.[25]
Kernel memory control groups (kmemcg)
Kernel memory control groups (kmemcg) were merged into version 3.8 of the Linux kernel mainline.[26][27][28] The kmemcg controller can limit the amount of memory that the kernel can utilize to manage its own internal processes.
Adoption
Various projects use cgroups as their basis, including CoreOS, Docker, Hadoop, Kubernetes,[29] lmctfy (Let Me Contain That For You), LXC (LinuX Containers), Mesos and Mesosphere.[29]
See also
- Operating system–level virtualization implementations
- Process group
- Tc (Linux) – a traffic control utility that has slight functional overlap with network-oriented cgroup settings
References
- ↑ Jonathan Corbet (29 May 2007). "Process containers". LWN.net.
- 1 2 Jonathan Corbet (29 October 2007). "Notes from a container". LWN.net. Retrieved 2015-04-14.
The original 'containers' name was considered to be too generic - this code is an important part of a container solution, but it's far from the whole thing. So containers have now been renamed 'control groups' (or 'cgroups') and merged for 2.6.24.
- ↑ "cgroup: convert to kernfs". 2014-01-28.
- ↑ "netfilter: x_tables: lightweight process control group matching". 2014-04-23.
- ↑ "cgroup: prepare for the default unified hierarchy". 2014-03-13.
- ↑ Jonathan Corbet (31 July 2007). "Controlling memory use in containers". LWN.
- ↑ Balbir Singh, Vaidynathan Srinivasan (July 2007). "Containers: Challenges with the memory resource controller and its performance" (PDF). Ottawa Linux Symposium.
- ↑ Jonathan Corbet (23 October 2007). "Kernel space: Fair user scheduling for Linux". Network World. Retrieved 2012-08-22.
- ↑ Kamkamezawa Hiroyu (19 November 2008). Cgroup and Memory Resource Controller (PDF presentation slides). Japan Linux Symposium.
- 1 2 Dave Hansen. Resource Management (PDF presentation slides). Linux Foundation.
- ↑ Matt Helsley (3 February 2009). "LXC: Linux container tools". IBM developerWorks.
- ↑ "Grid Engine cgroups Integration". Scalable Logic. 2012-05-22.
- ↑ "cgroups". kernel.org.
- ↑ "All About the Linux Kernel: Cgroup’s Redesign". Linux.com. 2013-08-15. Retrieved 2014-05-19.
- ↑ "The unified control group hierarchy in 3.16". LWN.net. 2014-06-11.
- ↑ "Pull cgroup updates for 3.15 from Tejun Heo". kernel.org. 2014-04-03.
- ↑ "Pull cgroup updates for 3.16 from Tejun Heo". kernel.org. 2014-06-09.
- ↑ Pavel Emelyanov, Kir Kolyshkin (19 November 2007). "PID namespaces in the 2.6.24 kernel". LWN.net.
- ↑ Jonathan Corbet (30 January 2007). "Network namespaces". LWN.net.
- ↑ Serge E. Hallyn, Ram Pai (17 September 2007). "Applying mount namespaces". IBM developerWorks.
- ↑ Michael Kerrisk (27 February 2013). "Namespaces in operation, part 5: User namespaces". lwn.net Linux Info from the Source.
- ↑ Janak Desai (11 January 2006). "Linux kernel documentation on unshare".
- ↑ "The Use of Name Spaces in Plan 9". 1992.
- ↑ "kernfs, sysfs, driver-core: implement synchronous self-removal". LWN.net. 2014-02-03. Retrieved 2014-04-07.
- ↑ "Linux kernel source tree: kernel/git/torvalds/linux.git: cgroups: convert to kernfs". kernel.org. 2014-02-11. Retrieved 2014-05-23.
- ↑ "memcg: kmem controller infrastructure". kernel.org. 2012-12-18.
- ↑ "memcg: kmem accounting basic infrastructure". kernel.org. 2012-12-18.
- ↑ "memcg: add documentation about the kmem controller". kernel.org. 2012-12-18.
- 1 2 "Mesosphere to Bring Google’s Kubernetes to Mesos". Mesosphere.io. 2014-07-10. Retrieved 2014-07-13.
External links
- Linux kernel documentation on cgroups
- Linux kernel Namespaces and cgroups by Rami Rosen
- Large-scale cluster management at Google with Borg, April 2015, by Abhishek Verma, Luis Pedrosa, Madhukar Korupolu, David Oppenheimer, Eric Tune and John Wilkes
|
|