Terra:Batch Job Submissions
Job Submission
Once you have your job file ready, it is time to submit your job. You can submit your job to slurm with the following command:
[user1@terra1 ~]$ sbatch MyJob.slurm Submitted batch job 3606
After a job has been submitted, you may want to check on its progress or cancel it. Below is a list of the most used job monitoring and control commands for jobs on Terra.
Function | Command | Example |
---|---|---|
Submit a job | sbatch [script_file] | sbatch FileName.job |
Cancel/Kill a job | scancel [job_id] | scancel 101204 |
Check status of a single job | squeue --job [job_id] | squeue --job 101204 |
Check status of all jobs for a user |
squeue -u [user_name] | squeue -u terraUser1 |