runlevel0
runlevel0

Reputation: 2993

How to get a list of allocated jobs on a node in slurm?

Is there a way to see a list of jobid's scheduled to be run on a node that shows state ALLOCATED ?

Or otherwise a list of jobids with their expected start time and to which node they are allocated ?

Slurm 16.05.11 -Bull.1.4

Upvotes: 2

Views: 3203

Answers (1)

damienfrancois
damienfrancois

Reputation: 59360

You can see the jobs currently running on a node, or a list of nodes, with

squeue -w <nodelist>

and you can see the nodes on which jobs will start with

squeue --start

Upvotes: 2

Related Questions