diff --git a/docs/biohpc/reserving.md b/docs/biohpc/reserving.md index 4d4a858..92f91cc 100644 --- a/docs/biohpc/reserving.md +++ b/docs/biohpc/reserving.md @@ -43,6 +43,23 @@ If using the command line login node, also see [`biohpc_res`](biohpcres) command ### Create your own private SLURM -If you have to manage a large number of independent jobs, you can create your own private SLURM cluster, including across multiple nodes. For more information, see [SLURM page at BioHPC](https://biohpc.cornell.edu/lab/userguide.aspx?a=software&i=689#c). Note that if you want some of your collaborators to also submit jobs, you need to explicitly add them to the **reservation**, they can then both log in to the node, and/or submit jobs from the `cbsulogin` node. +If you have to manage a large number of independent jobs, you can create your own private SLURM cluster, including across multiple nodes. For more information, see [SLURM page at BioHPC](https://biohpc.cornell.edu/lab/userguide.aspx?a=software&i=689#c) (search for `SLURM`). Note that if you want some of your collaborators to also submit jobs, you need to explicitly add them to the **reservation**, they can then both log in to the node, and/or submit jobs from the `cbsulogin` node. If you have done the [One-time setup](onetimesetup-slurm) for the general-purpose SLURM cluster, you will need to specifically reference your private cluster when submitting jobs, using the node you created the SLURM scheduler as the identifier. + +::::{tip} +:class: dropdown + +If you have a reservation on `cbsuecco11` and `cbsuecco12`, you could launch a SLURM cluster as + +``` +manage_slurm new cbsuecco12,cbsuecco11 +``` + +which makes `cbsuecco12` your "master node". If later you also have an additional reservation for `cbsuecco10`, you can add it using + +``` +manage_slurm addNode cbsuecco12 cbsuecco10 +``` + +::::