Bug 495441 - Implement support for SystemdSlice key in .desktop files
Summary: Implement support for SystemdSlice key in .desktop files
Status: RESOLVED NOT A BUG
Alias: None
Product: frameworks-kio
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: unspecified
Platform: Arch Linux Linux
: LO wishlist
Target Milestone: ---
Assignee: KIO Bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-10-27 18:00 UTC by Dominik Kummer
Modified: 2024-10-30 08:07 UTC (History)
6 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dominik Kummer 2024-10-27 18:00:27 UTC
I configured a custom systemd slice for resource intense desktop applications. Afterwards I added SystemdSlice=intense.slice to the specific app desktop file.

But the after checking with `systemctl status` the application still sits under apps.slice.
Comment 1 Nicolas Fella 2024-10-28 11:08:24 UTC
What makes you think this should work?

This key is not documented in https://specifications.freedesktop.org/desktop-entry-spec/latest/recognized-keys.html or https://systemd.io/DESKTOP_ENVIRONMENTS/

Is this documented somewhere else?
Comment 2 Dominik Kummer 2024-10-28 18:45:20 UTC
(In reply to Nicolas Fella from comment #1)
> What makes you think this should work?
> 
> This key is not documented in
> https://specifications.freedesktop.org/desktop-entry-spec/latest/recognized-
> keys.html or https://systemd.io/DESKTOP_ENVIRONMENTS/
> 
> Is this documented somewhere else?

OMG you are right! [one can skip the background story] Yesterday I tried to use ChatGPT to setup ressource management with systemd, to assign applications like Kdenlive or Kdevelop to intense.slice. ChatGPT suggested to use the desktop entry SystemdSlice, but told me that this option is not widely used because "Desktop Environments only recently began to integrate more tightly with systemd". GPT suggested to look deeper into the source code of Gnome, KDE or systemd to find more information about this option. I think it is another case of ChatGPT hallucinating. But the hallucination is probably not that bad. Because user slices under user.slice can be used to assign applications for more fine-grained ressource management. Maybe extended functionality with KDE Menu Editor could be useful for this purpose.

Long story short, I have to do source code research to find if ChatGPT was hallucinating/envisioning or not.

Does anyone think SystemdSlice entry could be useful?
Comment 3 Dominik Kummer 2024-10-29 04:31:52 UTC
INFO:

For now I use this:
Exec=systemd-run --user --slice=intense.slice kdevelop

with my custom desktop file.

Additional coding fun fact:
I've set my PATH environment to "/home/me/bin:/usr/bin" and put the following make-wrapper into `/home/me/bin`:
--
#!/bin/bash

# Check if the script is being run as root
if [ "$EUID" -eq 0 ]; then
    # Run make within a systemd slice with --pipe to pass output directly
    systemd-run --quiet --same-dir --slice=build.slice --wait --pipe /bin/make "$@"
else
    # Run the command normally if already in user context
    systemd-run --quiet --same-dir --user --slice=build.slice --wait --pipe /bin/make "$@"
fi
--
now my 12 core workhorse system is perfectly balanced. Heavy build jobs run in a build.slice which forbids swap usage.
app.slice and intense.slice run perfectly smooth and responsive with high cpu priority on swap during builds now.

This kind of resource management is more powerful than expected.
Comment 4 Dominik Kummer 2024-10-29 05:53:02 UTC
INFO:

Additional update on the demo wrapper script `/home/me/bin/make` mentioned below. This version also terminates the process inside the build.slice as the script is terminated by kdevelop for example:
--
#!/bin/bash

# Run the command in the systemd slice and capture job ID
# Check if the script is being run as root
if [ "$EUID" -eq 0 ]; then
    # Run make within a systemd slice with --pipe to pass output directly
    systemd-run --same-dir --scope --send-sighup --quiet --slice=build.slice /bin/make "$@"
else
    # Run the command normally if already in user context
    systemd-run --user --same-dir --scope --quiet --send-sighup --slice=build.slice /bin/make "$@"
fi
--
Comment 5 Dominik Kummer 2024-10-29 06:01:42 UTC
INFO:

Update on my current workaround. --scope option is of course needed:
Exec=systemd-run --user --scope --slice=intense.slice kdevelop
Comment 6 David Redondo 2024-10-30 08:07:07 UTC
See this blog post to set resource limits for specific apps https://blogs.kde.org/2024/10/18/limit-application-memory-usage-with-systemd/