Condor Commands to Submit and Monitor Jobs
These are some frequently used commands. For complete documentation on Condor commands, refer to the online man page: type man command at the shell prompt. Or review them all in the Command Reference Manual at the Condor Project website.
Frequently Used Condor Commands
|
Basic Usage
|
Example
|
| condor_submit |
submit a job |
condor_submit [submit file] |
$ condor_submit job.condor
|
| condor_q |
show status of jobs |
condor_q [cluster] |
$ condor_q 1170
|
| condor_rm |
remove jobs from the queue
|
condor_rm [cluster] |
$ condor_rm 1170
|
| condor_hold |
hold jobs in the queue
|
condor_hold [cluster] |
$ condor_hold 1170
|
| condor_release |
release jobs in the queue
|
condor_release [cluster] |
$ condor_release 1170
|
| condor_prio |
change priority of queued jobs |
condor_prio [cluster] |
$ condor_prio 1170
|
| condor_compile |
relink an executable for the standard universe |
condor_ compile [cc | f77 | g++ | make | ...] ... |
$ condor_compile cc whetstone.c -lm
|
Commands to Monitor Job Status
|
| condor_q |
list your jobs
|
condor_q -global
|
list all jobs
|
condor_q -submitter submitter_id |
list jobs for submitter_id |
| condor_q -run |
list running jobs |
| condor_status -state -total |
list summary of pool resources |
|