I'm bitrotten but otherwise ok, my design is sound and if I'm running and not getting into a fistfight with systemd, the system runs as smooth as never before. None the less, my author abondend me because he thinks he has more important things to do. Please adopt me.
Sincerely ulatencyd
Ulatency is a daemon that controls how the Linux kernel will spend it's resources on the running processes. It uses dynamic cgroups to give the kernel hints and limitations on processes.
It strongly supports the lua scripting language for writing rules and the scheduler code.
The Linux scheduler does a pretty good job to give the available resources to all processes, but this may not be the best user experience in the desktop case. ulatencyd monitors the system and categorizes the running processes into cgroups. Processes that run wild to slow down the system by causing massive swaping will be isolated.
There is a patch for 2.6.38 in pipeline, see http://thread.gmane.org/gmane.linux.kernel/1050575
I think that this mimimal aproach is good for some circumstances, but does not provide enough flexibility required for a true low latency desktop. Perfect desktop scheduling needs a lot of heuristics, that don't belong in the kernel. For example, the patch won't protect you from swap of death, fork bombs, can't detect which process you are actually using and give more cpu shares to them, can't give realtime priorities to processes like jackd, etc...
ulatencyd is designed for fixing exactly that.
Cgroups release agent (optional):
Documentation:
CLI:
GUI:
$ cmake .
$ make DEBUG=1
Configure options (optional):
$ ccmake .
ulatencyd needs some symbols that libprocps
does not export, therefore
you must either link to static libprocps or patch that library to
export all needed symbols.
By default ulatencyd satically links to libprocps.
You can override location of static libprocps library and the include
directory by setting PROCPS_STATIC_LIBRARY
and PROCPS_STATIC_INCLUDE_DIR
cmake variables. By default locations will be detected with help
from pkg-config.
PROCPS_STATIC_LIBRARY specifies full path to the library
(i.e. path to the libprocps.a file)
PROCPS_STATIC_INCLUDE_DIR specifies directory which contains
the proc/procps.h header.
e.g.:
$ cmake -D PROCPS_STATIC_LIBRARY:FILEPATH=/path/to/libprocps.a \
-D PROCPS_STATIC_INCLUDE_DIR:PATH=/path/to/include/dir .
If you insist on dynamic linkage to shared libprocps, update or patch
libprocps to export all symbols that application needs. CMake will
output the list during configuration phase, alternatively you can get
them from CMakeLists.txt
. If you manage your solution to be persistent,
future proof (in sense of API changes) and officially accepted by your
GNU/Linux distribution, please contact ulatencyd authors.
Dynamic linkage to shared libprocps may be enabled by setting
PROCPS_STATIC
to OFF
, e.g.:
$ cmake -D PROCPS_STATIC:BOOL=OFF .
Location of shared libprocps and include dir may be overridden by
cmake variable PROCPS_SHARED_LIBRARY
and PROCPS_SHARED_INCLUDE_DIR
.
$ make docs
$ sudo make install
$ sudo /usr/local/sbin/ulatencyd -v -f /var/log/ulatencyd
The core of the daemon is written in c, embedding a lua interpreter. Most of the rules are written in lua scripts, as heuristics for system behavior can best be written in a script language. The daemon exports system informations into lua script.
There are two ways implementing a heuristic behavior:
The timeout callback is called until it returns True. The filter class is the preferred way. The filter gets executed on processes and can categorize the process. Depending on the return value of the call the future behaviour may vary. The return value consists of a flag section and i timeout section. The filter is only executed after the timeout seconds. It may also cause the filter to not be called on any child progress of the filter.
The processes are traveld in tree order. This means that the progress tree is mapped into the data structure and traveled from top (id = 1, which is the init) and then trough all the children.
For more informations see wiki.