Hi there,
new to openpbs (and this list) I have a problem starting jobs via qsub with i.e. 17 procs on 5 nodes.
What I have :
A running setup on headnode “i1” with somes nodes in :
in12
queue = parallel-19
in17
queue = parallel-19
in20
queue = parallel-19
in22
queue = parallel-19
in46
queue = parallel-19
The default queue is parallel-19 and works fine.
I am able to start jobs on these machines.
Now I’ m searching the correct way to qsub a job as described in the topic.
Testing fast with interactive Jobs I found running i.e. :
qsub -I -l select=5:ncpus=5 -l place=scatter
qsub: waiting for job 115.i1 to start
qsub: job 115.i1 ready
cat $PBS_NODEFILE ; echo $NCPUS
in12
in17
in20
in22
in46
5
logout
qsub: job 115.i1 completed
But with this idea starting with more nodes than available is impossible, of course.
What I want :
Start a job via qsub with 17 procs on the 5 servers available taking the less used servers. Topologie does not matter (in this case).
Maybe just a matter of correct syntax or capability of queue ?
Any help welcome.