Torque

From HPC Wiki
Revision as of 10:03, 29 March 2018 by Nina-loseke-fd7a@rwth-aachen.de (talk | contribs) (Created page with "== Job Submission == This command submits the job your defined in your jobscript to the batch system: $ qsub jobscript.sh Just like any other incoming job, y...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Job Submission

This command submits the job your defined in your jobscript to the batch system:

$ qsub jobscript.sh

Just like any other incoming job, your job will first be queued. Then, the scheduler decides when your job will be run. The more resources your job requires, the longer it may be waiting to execute.

You can check the current status of your submitted jobs and their job ids with the following shell command. The most common states for a job are "pend", "run", "queue" (Que) or "on hold" (Hold). The command also shows the elapsed time since your job has started running and the time limit.

$ qstat -u <user_id>

In case you submitted a job on accident or realised that your job might not be running correctly, you can always remove it from the queue or terminate it when running by typing:

$ qdel <job_id>