Ada:Batch Job Commands
Job Monitoring and Control Commands
After a job has been submitted, you may want to check on its progress or cancel it. The next section shows a list of the most used job monitoring and control commands for jobs on Ada.
Function | Command | Example |
---|---|---|
Submit a job | bsub < [script_file] | bsub < MyJob.LSF |
Cancel/Kill a job | bkill [Job_ID] | bkill 101204 |
Check summary status of a single job | bjobs [job_id] | bjobs 101204 |
Check summary status of all jobs for a user (Method 1) | bjobs -u [user_name] | bjobs -u adaUser1 |
Check summary status of all jobs for a user (Method 2) | lj -u [user_name] | lj -u adaUser1 |
Check detailed status of a single job | bjobs -l [job_id] | bjobs -l 101204 |
Modify job submission options | bmod [bsub_options] [job_id] | bmod -W 2:00 101204 |
List nodes used by a job | lnu -j [job_id] -l | lnu -j 101204 -l |
For more information on any of the commands above, please see their respective man pages.
[ NetID@ada ~]$ man [command]