Challenge Batch Queues

To use the LSF batch queues you will need the following commands:


-----------
To submit your batch job


bsub [options] myfile.csh


     where myfile.csh does my work (like running a .x) and the options are:

-q [quename]         queues for QCD are qcd_cha, qcd_chb, short, long

-b [military time]   same as /after on VMS.  -b 20:00 will wait 
                     until 8pm before submitting the job

-----------
To get info on your batch jobs

bjobs [options] [job_id]
 or
bhist [options] [job_id]

  Selected Options:

     -l              gives verbose report

     -u [user]	     default is you.  putting in "-u all" gives
                     a report on everyone (like show que sys$batch
		     on VMS).

     -d		     reports on all jobs in history, including
                     finished ones!  Don't use with "-u all" !!

-----------
Kill your batch job with
bkill [job_id]       no id number kills the most recently submitted job


-----------
Irritatingly, the info in the log files is not available until the end of the job, unless you issue the command

bpeek [job_id]

-----------
See who has batch access:
bugroup              show batch queue rights


Return to Krane's Computing Page