Difference between revisions of "SLURM"
(→Partitions) |
|||
Line 7: | Line 7: | ||
== Partitions == | == Partitions == | ||
− | Slurm has a slightly different view on the cluster. Nodes of a cluster are organized in partitions. To submit a job you have the choose one partition where to run the job. | + | Slurm has a slightly different view on the cluster. Nodes of a cluster are organized in partitions. To submit a job you have the choose one partition where to run the job. |
+ | == Comparison with SUN Grid Engine == | ||
+ | The following table shows the most important commands in slurm compared to the commands of the grid engine. | ||
+ | |||
+ | {| border=1 | ||
+ | |+ Comparison of SGE and Slurm | ||
+ | ! SGE | ||
+ | ! Slurm | ||
+ | ! Description | ||
+ | |- | ||
+ | |qstat | ||
+ | | squeue | ||
+ | | Show running jobs | ||
+ | |- | ||
+ | |qsub | ||
+ | |sbatch | ||
+ | | Submit a batch job | ||
+ | |- | ||
+ | |qdel | ||
+ | |scancel | ||
+ | | Delete a batch job | ||
+ | |- | ||
+ | |qhost | ||
+ | |sinfo | ||
+ | | Get info about nodes | ||
+ | |} | ||
= Links = | = Links = | ||
* Homepage [https://computing.llnl.gov/linux/slurm/slurm.html] | * Homepage [https://computing.llnl.gov/linux/slurm/slurm.html] |
Revision as of 14:36, 2 January 2012
SLURM is the Simple Linux Utility for Resource Management and is an open source, fault-tolerant, and highly scalable cluster management and job scheduling system for large and small Linux clusters.
SLURM vs. SGE
This chapter compares the new batch system SLURM with the old SGE.
Partitions
Slurm has a slightly different view on the cluster. Nodes of a cluster are organized in partitions. To submit a job you have the choose one partition where to run the job.
Comparison with SUN Grid Engine
The following table shows the most important commands in slurm compared to the commands of the grid engine.
SGE | Slurm | Description |
---|---|---|
qstat | squeue | Show running jobs |
qsub | sbatch | Submit a batch job |
qdel | scancel | Delete a batch job |
qhost | sinfo | Get info about nodes |
Links
- Homepage [1]