You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To solve the issue raised in SwissDataScienceCenter/renku#1929, we propose to have renku cluster commands to submit renku workflows as batch jobs on the HPC systems:
renku cluster config: set options/variables for SLURM scripts in .renku/renku.ini
renku cluster run/update/rerun: submit renku run/update/rerun as a batch job to the HPC systems
Typical use case:
# User is in the HPC environment# User has installed renku on the HPC# for which user needs to install/update git-lfs and nodejs# User clones the project
renku clone <renkulab-project.git>cd<renkulab-project># User sets options/variables used in SLURM scripts, for example
renku cluster config sbatch.partition debug # Options for sbatch
renku cluster config renku.image <image_uri_in_renkulab-registry># Variables used in the sbatch scripts# User submits batch jobs
renku cluster update --all # which will create a batch job with chosen image based on some templates (see below)
Example template of SBATCH script with Singularity:
Default images in renkulab are in general very large due to jupyter and conda stack, etc. We suggest to use a batch version of image as descirbed in SwissDataScienceCenter/renku-project-template#118
The text was updated successfully, but these errors were encountered:
To solve the issue raised in SwissDataScienceCenter/renku#1929, we propose to have
renku cluster
commands to submit renku workflows as batch jobs on the HPC systems:renku cluster config
: set options/variables for SLURM scripts in.renku/renku.ini
renku cluster run/update/rerun
: submitrenku run/update/rerun
as a batch job to the HPC systemsTypical use case:
Example template of SBATCH script with
Singularity
:Image used in batch execution
Default images in renkulab are in general very large due to jupyter and conda stack, etc. We suggest to use a batch version of image as descirbed in SwissDataScienceCenter/renku-project-template#118
The text was updated successfully, but these errors were encountered: