Monday, September 14, 2015

Basic Condor commands

from: http://www.rcc.uh.edu/hpc-docs/134-basic-condor-commands.html



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_submitsubmit a jobcondor_submit  [submit file]
$ condor_submit job.condor
condor_qshow status of jobscondor_q [cluster]
$ condor_q 1170
condor_rmremove jobs from the queuecondor_rm [cluster]
$ condor_rm 1170 
condor_holdhold jobs in the queuecondor_hold [cluster]
$ condor_hold 1170
condor_releaserelease jobs in the queuecondor_release [cluster]
$ condor_release 1170
condor_priochange priority of queued jobscondor_prio [cluster]
$ condor_prio 1170
condor_compilerelink an executable for the standard universecondor_ compile [cc | f77 | g++  | make | ...] ...
$ condor_compile cc whetstone.c -lm

Commands to Monitor Job Status

condor_qlist your jobs
condor_q -globallist all jobs
condor_q -submitter submitter_id
list jobs for submitter_id
condor_q -runlist running jobs
condor_status -state -totallist summary of pool resources


No comments:

Post a Comment