Skip to content

Commit

Permalink
Changing jobmin to 1 for batch q on blues
Browse files Browse the repository at this point in the history
The jobmin for the "batch" queue on blues was set to 64 before
and hence jobs that required more than 1 hr (> walltimemax for
shared/debug queue) and less than 64 procs (jobmin for batch
queue on blues is 64) did not fit in any available queue.

Setting jobmin to 1 for blues+batch queue so that longer jobs
that don't fit in the shared/debug queue fit the batch queue.

Fixes #1484
[BFB]
  • Loading branch information
jayeshkrishna committed May 9, 2017
1 parent 87bc2de commit ae8f063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/acme/machines/config_batch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
</directives>
<queues>
<queue walltimemax="01:00:00" jobmin="1" jobmax="64">shared</queue>
<queue walltimemax="03:00:00" jobmin="64" jobmax="4096" default="true">batch</queue>
<queue walltimemax="03:00:00" jobmin="1" jobmax="4096" default="true">batch</queue>
</queues>
</batch_system>

Expand Down

0 comments on commit ae8f063

Please sign in to comment.