...
How does one actually invoke a job exclusively?
LSF bsub command has the -x option. To send your job to a node that has extra memory and runs exclusively:
-bash_3.2$ bsub -x -q express_public -R bigmem ...
How does one make use of nodes with \/scratch2 storage?
If you submit a job with the following request, LSF will place jobs on nodes with \/scratch2 partitions.
For example, to request at least 40gig of storage for a job to run in the long_public queue try:
-bash_3.2$ bsub -q long_public -R "scratch2 > 40000000" ./your_jobname
Note the argument is in kilobytes.
What are some of the most common LSF commands:
...