#linux-kernel #userspace #scheduler #bpf #user #user-defined #space

app scx_rusty

A multi-domain, 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

6 releases

0.5.5 Apr 4, 2024
0.5.4 Jan 25, 2024
0.5.1 Dec 12, 2023
0.5.0 Nov 30, 2023

#215 in Unix APIs

Download history 11/week @ 2024-01-04 4/week @ 2024-01-25 9/week @ 2024-02-22 3/week @ 2024-02-29 31/week @ 2024-03-07 15/week @ 2024-03-14 4/week @ 2024-03-28 84/week @ 2024-04-04 3/week @ 2024-04-11

91 downloads per month

GPL-2.0-only

120KB
2.5K SLoC

Rust 1.5K SLoC // 0.1% comments C 1K SLoC // 0.2% comments

scx_rusty

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 multi-domain, BPF / user space hybrid scheduler. The BPF portion of the scheduler does a simple round robin in each domain, and the user space portion (written in Rust) calculates the load factor of each domain, and informs BPF of how tasks should be load balanced accordingly.

How To Install

Available as a Rust crate: cargo add scx_rusty

Typical Use Case

Rusty is designed to be flexible, and accommodate different architectures and workloads. Various load balancing thresholds (e.g. greediness, frequenty, etc), as well as how Rusty should partition the system into scheduling domains, can be tuned to achieve the optimal configuration for any given system or workload.

Production Ready?

Yes. If tuned correctly, rusty should be performant across various CPU architectures and workloads. Rusty by default creates a separate scheduling domain per-LLC, so its default configuration may be performant as well. Note however that scx_rusty does not yet disambiguate between LLCs in different NUMA nodes, so it may perform better on multi-CCX machines where all the LLCs share the same socket, as opposed to multi-socket machines.

Note as well that 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_rusty.

Dependencies

~24–38MB
~599K SLoC