#linux-kernel #userspace #scheduler #scheduling #bpf #layer #user

app scx_layered

A highly configurable multi-layer BPF / user space hybrid scheduler used within sched_ext, which is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them. https://github.com/sched-ext/scx/tree/main

7 releases

0.0.7 Apr 4, 2024
0.0.6 Jan 31, 2024
0.0.2 Dec 12, 2023
0.0.1 Nov 30, 2023

#360 in Unix APIs

Download history 12/week @ 2024-01-04 10/week @ 2024-01-25 1/week @ 2024-02-01 3/week @ 2024-02-15 12/week @ 2024-02-22 4/week @ 2024-02-29 55/week @ 2024-03-07 18/week @ 2024-03-14 4/week @ 2024-03-28 79/week @ 2024-04-04 3/week @ 2024-04-11

86 downloads per month

GPL-2.0-only

99KB
2.5K SLoC

Rust 1.5K SLoC // 0.0% comments C 799 SLoC // 0.1% comments

scx_layered

This is a single user-defined scheduler used within sched_ext, which is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them. Read more about sched_ext.

Overview

A highly configurable multi-layer BPF / user space hybrid scheduler.

scx_layered allows the user to classify tasks into multiple layers, and apply different scheduling policies to those layers. For example, a layer could be created of all tasks that are part of the user.slice cgroup slice, and a policy could be specified that ensures that the layer is given at least 80% CPU utilization for some subset of CPUs on the system.

How To Install

Available as a Rust crate: cargo add scx_layered

Typical Use Case

scx_layered is designed to be highly customizable, and can be targeted for specific applications. For example, if you had a high-priority service that required priority access to all but 1 physical core to ensure acceptable p99 latencies, you could specify that the service would get priority access to all but 1 core on the system. If that service ends up not utilizing all of those cores, they could be used by other layers until they're needed.

Production Ready?

Yes. If tuned correctly, scx_layered should be performant across various CPU architectures and workloads.

That said, you may run into an issue with infeasible weights, where a task with a very high weight may cause the scheduler to incorrectly leave cores idle because it thinks they're necessary to accommodate the compute for a single task. This can also happen in CFS, and should soon be addressed for scx_layered.

Dependencies

~25–38MB
~606K SLoC