What is the minimum number of computers for a slurm cluster

I would like to install a SLURM cluster. How many cars do I need at least? Can I start with 2 machines (one of them is only a client, and one is a client and a server)?

+1
source share
2 answers

You can start using only one machine, but two machines will be the most standard configuration, which is one controller machine and the other a โ€œworkingโ€ node. With this model, you can add so many machines that the cluster will be โ€œworkingโ€ nodes. Thus, the server will not perform tasks and will not interfere with operation.

+1
source

As @Carles wrote, you can only use one computer, if you want, run both the controller ( slurmctld ) and the working ( slurmd ) daemon.

If you want to test some configurations and observe the behavior of Slurm, you can even run several working daemons on the same machine to simulate a larger cluster using the -N <hostname> parameter.

If you want to perform some calculations, you can run the controller and the working daemon on the same node. If you want the system to still be responsive, just configure Slurm to assume that the system has 1 core and 2 GB less RAM than it actually does, to leave room for the OS and the Slurm daemons.

As an additional note, the pages you specify in your question correspond to a very old version of Slurm. A newer version of the documentation is available on the Schedmd website .

+1
source

Source: https://habr.com/ru/post/1272934/


All Articles