Torque
General
Torque is a job scheduler. To get an overview of the functionality of a scheduler, go here.
Job Submission
This command submits the job you 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 queued Q
(job waits for free nodes), running R
(the jobscript is currently being executed) or on hold H
(job is currently stopped, but does not wait for resources). 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>
#PBS Usage
TODO
Jobscript Examples
TODO