difference between cgroups and namespaces

LinuxDockerCgroups

Linux Problem Overview


I recently started learning docker and it seems that most of the heavy lifting is done by the Linux kernel, using namespaces and cgroups.

A few things which I am finding confusing are:

  1. What is the difference between a namespace and a cgroup? What are the different use cases they address?

  2. What has docker implemented on top this these to gain popularity ?

  3. I would like to know the internals of these features and how they are implemented.

Linux Solutions


Solution 1 - Linux

The proper links for those two notions have been fixed in PR 14307:

> Under the hood, Docker is built on the following components: > > The cgroups and namespaces capabilities of the Linux kernel

With:

  • cgroup: Control Groups provide a mechanism for aggregating/partitioning sets of tasks, and all their future children, into hierarchical groups with specialized behaviour.
  • namespace: wraps a global system resource in an abstraction that makes it appear to the processes within the namespace that they have their own isolated instance of the global resource.

In short:

  • Cgroups = limits how much you can use;
  • namespaces = limits what you can see (and therefore use)

See more at "Anatomy of a Container: Namespaces, cgroups & Some Filesystem Magic" by Jérôme Petazzoni.

Cgroups involve resource metering and limiting:

  • memory
  • CPU
  • block I/O
  • network

Namespaces provide processes with their own view of the system

Multiple namespaces:

Solution 2 - Linux

cgroups limits the resources which a process or set of processes can use these resources could be CPU,Memory,Network I/O or access to filesystem while namespace restrict the visibility of group of processes to the rest of the system.

visit for further details How Linux Kernel Cgroups And Namespaces Made Modern Containers Possible

Solution 3 - Linux

Cgroups(control groups) does resource management.
It determines how much host machine resources to be given to containers.

for example:- we define resources in docker-compose yaml file for creating services like:

resources:
limits:
cpus: "0.1" (100 millicores)
memory: 50M
Here, in this example we are explicitly asking cgroups to allocate these resources to particular container.

Namespaces: provides process isolation, complete isolation of containers, separate file system.


There are 6 types of namespaces:

  1. mount ns - for file system.
  2. UTS(Unique time sharing) ns- which checks for different hostnames of running containers
  3. IPC ns - interprocess communication
  4. Network ns- takes care of different ip allocation to different containers
  5. PID ns - process id isolation
  6. user ns- different username(uid)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionInsatiableTravellerView Question on Stackoverflow
Solution 1 - LinuxVonCView Answer on Stackoverflow
Solution 2 - LinuxcaptainchhalaView Answer on Stackoverflow
Solution 3 - LinuxMahima MangalView Answer on Stackoverflow