Fixed links

This commit is contained in:
2019-07-01 19:14:12 +02:00
parent 83d9a9de28
commit e7eb4a277b
2 changed files with 32 additions and 9 deletions

View File

@ -17,7 +17,7 @@ Slurm has been installed in a **multi-clustered** configuration, allowing to int
* Two different Slurm clusters exist: **merlin5** and **merlin6**.
* **merlin5** is a cluster with very old hardware (out-of-warranty).
* **merlin5** will exist as long as hardware incidents are soft and easy to repair/fix (i.e. hard disk replacement)
* **merlin6** is the default cluster when submitting jobs.
* **merlin6** is the default cluster when running Slurm commands (i.e. sinfo).
Please follow the section **Merlin6 Slurm** for more details about configuration and job submission.
@ -25,9 +25,14 @@ Please follow the section **Merlin6 Slurm** for more details about configuration
Keeping the **merlin5** cluster will allow running jobs in the old computing nodes until users have fully migrated their codes to the new cluster.
From July 2019, **merlin6** becomes the **default cluster** and any job submitted to Slurm will be submitted to that cluster.
However, users can keep submitting to the old **merlin5** computing nodes by using the option ``--cluster=merlin5`` and using the corresponding
Slurm partition with ``--partition=merlin``. In example:
From July 2019, **merlin6** becomes the **default cluster**. However, users can keep submitting to the old **merlin5** computing nodes by using
the option ``--cluster=merlin5`` and using the corresponding Slurm partition with ``--partition=merlin``. In example:
```bash
#SBATCH --clusters=merlin6
```
Example of how to run a simple command:
```bash
srun --clusters=merlin5 --partition=merlin hostname
@ -36,6 +41,15 @@ sbatch --clusters=merlin5 --partition=merlin myScript.batch
### Merlin6 Access
By default, any job submitted with specifying ``--clusters=`` should use the local cluster, so nothing extra should be specified. In any case,
you can optionally add ``--clusters=merlin6`` in order to force submission to the Merlin6 cluster.
In order to run jobs on the **Merlin6** cluster, you need to specify the following option in your batch scripts:
```bash
#SBATCH --clusters=merlin6
```
Example of how to run a simple command:
```bash
srun --clusters=merlin6 hostname
sbatch --clusters=merlin6 myScript.batch
```