Translate SLURM CLI commands to SLURM REST API calls
Project description
Badges
SLURM CLI-API Proxy client is a tool designed to bridge existing applications and scripts that rely on the SLURM CLI. The tool mimics a selection of SLURM CLI commands, translating them into REST API calls, enabling seamless integration of existing tools with external SLURM workload managers.
Due to the extensive range of optional SLURM command arguments, only a limited subset is supported. However, the tool is designed for flexibility—the support to new arguments can be easily enabled by mapping them to the corresponding API request parameters or payload properties. Additionally, the design prioritizes extensibility, allowing support for alternative SLURM API versions (currently working with v0.0.39 or v0.0.43). The developers documentation provides further details on these design elements.
Setup and usage
Requirement
- Linux, MacOS or Windows with WSL
- Python version ≥3.12
Installation
# Check python version (requiring ≥3.12)
python --version
# If the python version is <3.12
Make sure python3.12 is available on the host.
And create a virtual environment with python 3.12
# install python3.12 (or higher)
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install python3.12
sudo apt install python3.12-venv
# Create a new virtual environment
python3.12 -m venv env
# activate virtual environment
source env/bin/activate
# install
pip install .
A virtual environment is required to install the the non-pypi dependencies. You can also use conda to manage python environments. If running from a shell terminal, the virtual environment where the package was installed must be active on it.
Testing
Unit and integration tests
# Start a dockerized slurm cluster on localhost (works on Linux only)
source src/tests/slurm_test_scripts/start_dockerized_slurm.sh
# Run tests
pytest
Running unit tests only (doesn't require the dockerized slurm cluster)
# Run tests, excluding integration ones (which require the dockerized slurm cluster running on localhost)
pytest -m "not integration"
Static type checking
# Static type checking with mypy.
mypy src --check-untyped-defs
Usage from a shell terminal
- Define the URI of the target SLURM API through the
PROXY_SLURM_API_URLenvironment variable:
# Example:
export PROXY_SLURM_API_URL=http://slurm-controller:6820
# Or in the case of Snellius, the Dutch national supercomputer:
export PROXY_SLURM_API_URL=https://slurm.snellius.surf.nl
- Set the SLURM_JWT environment variable with the API token of the target SLURM API. An script is provided to do this if you have ssh access to the SLURM workload manager:
# ON THE SLURM HOST generate a token, with an optional lifespan specification in seconds
scontrol token [lifespan=<int in seconds>]
# Setting the SLURM_JWT
# the token already is prepended with the environment variable name "SLURM_JWT="
# so you just have to type "export " and paste the output of the scrontrol token command
export SLURM_JWT=<token>
# Or setting the SLURM_JWT and SLURM_USER variables through the provided script (password for opening an ssh session will be requested)
# source update_token.sh <slurm-wlm-user> <slurm-wlm-host>. E.g.:
source update_token.sh userx slurm-controller
- Set the SLURM_USER environment variable to the username of the user on who's account the JWT token was created. The value of SLURM_USER is used to set a sbatch command's default directory to this user's home:
export SLURM_USER=<username>
- Run slurm commands as you would do* with the real ones:
#sbatch help
sbatch --help
#request a job defined on a shell script
sbatch --job-name jobx --chdir /home/userx src/tests/slurm_test_scripts/slurm_write_job.sh
#capture a job definition through STDIN and request its execution
sbatch --job-name jobx --chdir /home/userx
#show running jobs
squeue
#show running jobs in json format
squeue --json
#update a job
scontrol update JobId=206 MinCPUsNode=1
#hold/release a given job
scontrol hold 209
scontrol release 209
🚧 Release notice* 🚧
Only sbatch and squeue and scontrol commands have been implemented, with a limited number of arguments. However, the tool is designed in a way that new arguments can be integrated as these are needed. This requires only to specify a mapping between the value given to the new argument and the property sent on the payload of the corresponding API request. More details on this are available on the developer's documentation.
If you encounter issues or have feedback, please report them through the project's issue tracker.
Contributing
If you want to contribute to the development of slurm_api_cli_proxy, have a look at the contribution guidelines.
Credits
This package was created with Copier and the NLeSC/python-template.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file slurm_api_cli_proxy-0.2.2.tar.gz.
File metadata
- Download URL: slurm_api_cli_proxy-0.2.2.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
056ed8d215db39a92f9e9a3d2569fad574851016bf76d10e6973ce4ab3cf8d98
|
|
| MD5 |
dbb59f620c2ef36dfe794d9ec3ac9509
|
|
| BLAKE2b-256 |
9c65eaef3b9cf053ce75b7504d1fa915ef9e08ca57572cd546ffcaac76fe4b96
|
File details
Details for the file slurm_api_cli_proxy-0.2.2-py3-none-any.whl.
File metadata
- Download URL: slurm_api_cli_proxy-0.2.2-py3-none-any.whl
- Upload date:
- Size: 14.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2bdf96579a74396a7ca085a2fb2471fe07dc87ec6a935f3932322aff2fe3c911
|
|
| MD5 |
7e8a57d091e8b17194842a584580e87e
|
|
| BLAKE2b-256 |
98a709f1945d55682d7ebdc8bb93f9ca9ea5c71ff7937b863fff29b504aa9b2b
|