Ananicy (ANother Auto NICe daemon) — is a shell daemon created to manage processes' IO and CPU priorities, with community-driven set of rules for popular applications (anyone may add his own rule via github's pull request mechanism).
I think it's only for desktop usage.
I just wanted a tool for auto set programs nice in my system, i.e.:
Use ananicy to fix this problems!
X.Y.Z where
X - Major version,
Y - Script version - reset on each major update
Z - Rules version - reset on each script update
Read more about semantic versioning here
To use ananicy you must have systemd installed.
You can install ananicy manually by:
$ git clone https://github.com/Nefelim4ag/Ananicy.git /tmp/ananicy
$ cd /tmp/ananicy
$ sudo make install
$ git clone https://github.com/Nefelim4ag/Ananicy.git
$ ./Ananicy/package.sh debian
$ sudo dpkg -i ./Ananicy/ananicy-*.deb
Enable
$ sudo systemctl enable ananicy
$ sudo systemctl start ananicy
Rules files should be placed under /etc/ananicy.d/ directory and have *.rules extension. Inside .rules file every process is described on a separate line, general syntax is described below:
{ "name": "gcc", "type": "Heavy_CPU", "nice": 19, "ioclass": "best-effort", "ionice": 7, "cgroup": "cpu90" }
All fields except 'name' are optional.
'name' used for match processes by exec bin name
~ basename $(sudo realpath /proc/1/exe)
systemd
Currently match by other things, not supported.
You can check what Ananicy see, by:
ananicy dump proc
Ananicy load all rules in ram while starting, so to apply rules, you must restart service.
Available ionice values:
$ man ionice
CFQ IO Scheduller also use 'nice' for internal scheduling, so it's mean processes with same IO class and IO priority, but with different nicceness will take advantages of 'nice' also for IO.
About IO priority:
Get ananicy output with journalctl:
$ journalctl -efu ananicy.service
schedtool
If you see this error in the output
Jan 24 09:44:18 tony-dev ananicy[13783]: ERRO: Missing schedtool! Abort!
Fix it in Ubuntu with
sudo apt install schedtool
Please use pull request, thanks