README.md
May 8, 2026 · View on GitHub
slop
A top-like utility for the Slurm HPC batch job scheduler
Index
Features
top-like TUI for Slurm — realtime views of jobs, users, accounts and cluster health- Views:
- Dashboard - Cluster and job overview at a glance
- My Jobs — your current jobs and personal history
- Users / Accounts / Partitions / States — No more staring at
squeueoutput, find what you're looking for in a glance - Cluster — Overview of resources and usage, as well as scheduler priority
- Job Flow — live view of jobs starting and ending, with ETAs for top pending jobs
- Report — comprehensive per-user report with efficiency stats and history
- Smart search (
/) — auto-detects job IDs, nodes, accounts, or users; tab completion and live suggestions - Array job awareness — parents collapse/expand to reveal children, focus is preserved across refreshes
- Comprehensive user reports — CPU/time efficiency, wasted hours, time-limit warnings, top failure reasons
- Adapts queries to minimize load - If
slurmdbdis slow to respond,slopautomatically backs off to reduce database pressure - Works anywhere — no daemon, no privileges, no config files. You just need the default tools that come with slurm
Screenshots
Click to expand screenshots
Installation
Dependencies and requirements
- Slurm >= 25.x with JSON output is explicitly supported. Older versions should work fine (as long as they support JSON), but I'll only fix bugs from 25 and up.
- Python >= 3.9
- Urwid >= 4.0.0
Any distro or architecture should work just fine, as long as the above is supported.
Install/run locally
python -m venv slop_venv
source slop_venv/bin/activate
git clone https://github.com/buzh/slop
cd slop
pip install -r slop/requirements.txt
python -m slop.main
Install globally
You can build a standalone binary with a tool such as pyinstaller.
Clone the repo, create the venv and install deps as above, then:
pip install pyinstaller
pyinstaller --collect-all=urwid --onefile slop/main.py -n slop
cp dist/slop /somewhere/in/path # "slop" is the resulting binary
Packages
RPM
Pre-built x86_64 RPMs are available on the Releases page. Other architectures might be added in the future.
DEB
I currently don't build .deb packages, but if popular demand arises I'll look into it.
Changelog
See CHANGELOG.md.
Comments or feedback is highly appreciated, especially bug or crash reports. Even a "this works on my cluster" is helpful, since I only have access to so many systems — and there are many ways to configure Slurm.