Tagged articles

CPU isolation

8 articles · Page 1 of 1
Liangxu Linux
Liangxu Linux
Jul 21, 2026 · Fundamentals

How to Achieve Real‑Time Performance with Linux in Embedded Systems

The article explains why Linux can be used for real‑time embedded applications, describes the misconception that Linux is inherently non‑real‑time, and details four practical techniques—PREEMPT_RT patch, CPU isolation, real‑time scheduling policies, and memory‑management optimizations—plus a brief discussion of dual‑kernel solutions for hard‑real‑time needs.

CPU isolationLinuxMemory Management
0 likes · 7 min read
How to Achieve Real‑Time Performance with Linux in Embedded Systems

Low‑Latency HFT: Isolating CPUs with isolcpus, nohz_full, rcu_nocbs and IRQ Affinity

After binding HFT strategy threads to a dedicated core, four sources of interference—other runnable tasks, timer ticks, RCU callbacks, and hardware interrupts—still affect latency; the article explains how isolcpus, nohz_full, rcu_nocbs and IRQ affinity can eliminate each source, shows exact kernel parameters, verification commands, and warns about common pitfalls.

CPU isolationIRQ affinityLinux kernel
0 likes · 25 min read
Low‑Latency HFT: Isolating CPUs with isolcpus, nohz_full, rcu_nocbs and IRQ Affinity
Open Source Linux
Open Source Linux
Apr 24, 2024 · Cloud Native

How Does Docker Enforce CPU Isolation with Cgroups?

Docker achieves CPU isolation by leveraging Linux cgroups, assigning containers to specific control groups, setting CPU limits via the --cpus option, and using the kernel’s CPU scheduler to enforce dynamic, bounded CPU usage without permanently binding containers to particular cores.

CPU isolationcontainer resource limits
0 likes · 7 min read
How Does Docker Enforce CPU Isolation with Cgroups?
Liangxu Linux
Liangxu Linux
Apr 18, 2024 · Cloud Native

How Does Docker Achieve CPU Isolation with cgroups?

Docker uses Linux cgroups to limit and schedule CPU resources for containers, allowing you to set a maximum number of CPU cores per container while keeping the actual cores dynamically allocated, so other processes can still use the remaining CPUs.

CPU isolationDockercgroups
0 likes · 7 min read
How Does Docker Achieve CPU Isolation with cgroups?
MaGe Linux Operations
MaGe Linux Operations
Jan 13, 2024 · Cloud Native

How Does Docker Enforce CPU Isolation with cgroups?

Docker leverages Linux cgroups to limit and schedule CPU usage for containers, allowing users to set a maximum number of CPU cores with the --cpus flag while keeping the actual cores dynamically allocated, ensuring other host processes can still access unassigned CPUs.

CPU isolationLinuxcgroups
0 likes · 6 min read
How Does Docker Enforce CPU Isolation with cgroups?
Big Data Technology & Architecture
Big Data Technology & Architecture
Jun 18, 2020 · Big Data

CPU Resource Isolation in YARN with Linux cgroups

This article introduces Linux cgroups, explains their CPU subsystem files and parameters, demonstrates how to create and configure cgroups, and details how YARN leverages cgroups for CPU resource isolation through configuration settings and code implementations, comparing soft and hard limit approaches.

CPU isolationHadoopLinux
0 likes · 10 min read
CPU Resource Isolation in YARN with Linux cgroups
360 Tech Engineering
360 Tech Engineering
Nov 25, 2019 · Cloud Native

Understanding lxcfs: Isolating /proc and /sys in Containers

This article explains how lxcfs, a FUSE‑based user‑space filesystem, isolates the /proc and /sys virtual files for containers, details its implementation for reading cpuonline and load average, and provides code examples of the core functions that enable per‑container system metric visibility.

CPU isolationFUSELinux
0 likes · 17 min read
Understanding lxcfs: Isolating /proc and /sys in Containers