Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • The general queue is the base subscription. All active compute users have access to this queue.

  • There are no guaranteed resources associated with a general subscription.

  • The following example shows how the group name and queue name will look for the general queue.

  • This queue is used as the example in the rest of the compute documentation examples elsewhere.

  • You can find the general queue policies here.

Code Block
languagepython
linenumbersfalse
#general queue (batch job)
bsub -q general -G ${compute-group} -a 'docker(alpine)' /bin/sleep 60

#general-interactive queue (interactive job)
bsub -Is -q general-interactive -G ${compute-group} -a 'docker(alpine)' /bin/bash

...