Home

Awesome

memavaild

CodeQL Total alerts Packaging status

Improve responsiveness during heavy swapping: keep amount of available memory.

"If you actually tried to use the memory it says in MemAvailable, you may very well already get bad side effects as the kernel needs to reclaim memory used for other purposes (file caches, mmap'ed executables, heap, …). Depending on the workload, this may already cause the system to start thrashing."

Benjamin Berg

Default behavior: the control groups specified in the config (user.slice and system.slice) are swapped out when MemAvailable is low by reducing memory.high (values change dynamically). memavaild tries to keep about 3% available memory.

Effects: tasks are performed at less I/O and memory pressure (and this may be detected by PSI metrics). At the same time, performance may be increased in tasks that requires heavy swapping, especially in I/O bound tasks. Using memavaild has no effect without swap space.

Requirements

How to enable unified cgroup hierarchy

Unified cgroup hierarchy is enabled by default on Fedora 31+. On other distros pass systemd.unified_cgroup_hierarchy=1 to the kernel boot cmdline.

Known problems

Install

For Arch Linux there's an AUR package

Use your favorite AUR helper. For example,

$ yay -S memavaild
$ sudo systemctl enable --now memavaild.service

memavaild-git is also available.

To install on Debian and Ubuntu-based systems:

It's easy to build a deb package with the latest git snapshot. Install build dependencies:

$ sudo apt install make fakeroot

Clone the latest git snapshot and run the build script to build the package:

$ git clone https://github.com/hakavlad/memavaild.git && cd memavaild
$ deb/build.sh

Install the package:

$ sudo apt install --reinstall ./deb/package.deb

Start and enable memavaild.service after installing the package:

$ sudo systemctl enable --now memavaild.service

On other distros:

Install:

$ git clone https://github.com/hakavlad/memavaild.git && cd memavaild
$ sudo make install
$ sudo systemctl enable --now memavaild.service

Uninstall:

$ sudo make uninstall

How to configure

Edit the config (/etc/memavaild.conf or /usr/local/etc/memavaild.conf) and restart the service.

Demo