Reputation: 2993
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
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