next up previous contents index
Next: condor_ submit_dag Up: 9. Command Reference Manual Previous: condor_ status   Contents   Index

Subsections


condor_ submit

Queue jobs for execution under Condor

Synopsis

condor_ submit [-] [-v] [-n schedd_name] [-r schedd_name] [-d] [-a command ... ] [submit description file]

Description

condor_ submit is the program for submitting jobs for execution under Condor. condor_ submit requires a submit description file which contains commands to direct the queuing of jobs. One submit description file may contain specifications for the queuing of many Condor jobs at once. All jobs queued by a single invocation of condor_ submit must share the same executable, and are referred to as a job cluster. It is advantageous to submit multiple jobs as a single cluster because:

SUBMIT DESCRIPTION FILE COMMANDS

Each submit description file describes one cluster of jobs to be placed in the Condor execution pool. All jobs in a cluster must share the same executable, but they may have different input and output files, and different program arguments. The submit description file is the only command-line argument to condor_ submit.

The submit description file must contain one executable command and at least one queue command. All of the other commands have default actions.

The commands which can appear in the submit description file are:

executable = <name>
The name of the executable file for this job cluster. Only one executable command may be present in a description file. If submitting into the Standard Universe, which is the default, then the named executable must have been re-linked with the Condor libraries (such as via the condor_ compile command). If submitting into the Vanilla Universe, then the named executable need not be re-linked and can be any process which can run in the background (shell scripts work fine as well). If submitting into the Java Universe, then the argument must be a compiled .class file.

input = <pathname>
Condor assumes that its jobs are long-running, and that the user will not wait at the terminal for their completion. Because of this, the standard files which normally access the terminal, (stdin, stdout, and stderr), must refer to files. Thus, the filename specified with input should contain any keyboard input the program requires (i.e. this file becomes stdin). If not specified, the default value of /dev/null is used.

output = <pathname>
The output filename will capture any information the program would normally write to the screen (i.e. this file becomes stdout). If not specified, the default value of /dev/null is used. More than one job should not use the same output file, since this will cause one job to overwrite the output of another.

error = <pathname>
The error filename will capture any error messages the program would normally write to the screen (i.e. this file becomes stderr). If not specified, the default value of /dev/null is used. More than one job should not use the same error file, since this will cause one job to overwrite the errors of another.

arguments = <argument_list>
List of arguments to be supplied to the program on the command line. In the Java Universe, the first argument must be the main of the class containing main.

initialdir = <directory-path>
Used to specify the current working directory for the Condor job. Should be a path to a preexisting directory. If not specified, condor_ submit will automatically insert the user's current working directory at the time condor_ submit was run as the value for initialdir.

transfer_input_files = < file1, file2, file... >
Lists all the files to be transferred into the working directory for the job before the job is started. Separate multiple filenames with a comma. By default, the file specified in the executable command and any file specified in the input command (for example, stdin) are transferred.

To ensure that Condor picks a machine with enough local disk space for the job, add to the Requirements expression in the submit description file such that it includes the Disk attribute. A requirements example of that specifies only the Disk attribute:

        # The machine which runs the job must have more than
	# 10Mbytes of free disk space.  The "Disk" attribute
        # is expressed in kilobytes; 10 Mbytes is 10000 kbytes.
        requirements = Disk > 10000

Only the transfer of files is available; the transfer of subdirectories is not supported.

transfer_output_files = < file1, file2, file... >
This command forms an explicit list of output files to be transferred back from the temporary working directory on the execute machine to the submit machine. Most of the time, there is no need to use this command. If transfer_output_files is not specified, Condor will automatically transfer back all files in the job's temporary working directory which have been modified or created by the job. This is usually the desired behavior. Explicitly listing output files is typically only done when the job creates many files, and the user wants to keep a subset of those files. WARNING: Do not specify transfer_output_file in the submit description file unless there is a really good reason - it is best to let Condor figure things out by itself based upon what the job.

transfer_files = <ONEXIT | ALWAYS>
Setting transfer_files equal to ONEXIT will cause Condor to transfer the job's output files back to the submitting machine only when the job completes (exits). If not specified, ONEXIT is used as the default. Specifying ALWAYS forces Condor to transfer output files either when the job completes or when the job is preempted or killed prior to job completion. The ALWAYS option is intended for fault tolerant jobs which periodically save their own state and can restart where they left off. Any output files transferred back to the submit machine are automatically sent back out again as input files when the job restarts.

requirements = <ClassAd Boolean Expression>
The requirements command is a boolean ClassAd expression which uses C-like operators. In order for any job in this cluster to run on a given machine, this requirements expression must evaluate to true on the given machine. For example, to require that whatever machine executes your program has a least 64 Meg of RAM and has a MIPS performance rating greater than 45, use:
        requirements = Memory >= 64 && Mips > 45
Only one requirements command may be present in a submit description file. By default, condor_ submit appends the following clauses to the requirements expression:
  1. Arch and OpSys are set equal to the Arch and OpSys of the submit machine. In other words: unless you request otherwise, Condor will give your job machines with the same architecture and operating system version as the machine running condor_ submit.
  2. Disk >= DiskUsage. The DiskUsage attribute is initialized to the size of the executable plus the size of any files specified in a transfer_input_files command. It exists to ensure there is enough disk space on the target machine for Condor to copy over both the executable and needed input files. The DiskUsage attribute represents the maximum amount of total disk space required by the job in kilobytes. Condor automatically updates the DiskUsage attribute approximately every 20 minutes while the job runs with the amount of space being used by the job on the execute machine.
  3. VirtualMemory >= ImageSize. To ensure the target machine has enough virtual memory to run your job.
  4. If Universe is set to Vanilla, FileSystemDomain is set equal to the submit machine's FileSystemDomain.
You can view the requirements of a job which has already been submitted (along with everything else about the job ClassAd) with the command condor_ q -l; see the command reference for condor_ q on page [*]. Also, see the Condor Users Manual for complete information on the syntax and available attributes that can be used in the ClassAd expression.

rank = <ClassAd Float Expression>
A ClassAd Floating-Point expression that states how to rank machines which have already met the requirements expression. Essentially, rank expresses preference. A higher numeric value equals better rank. Condor will give the job the machine with the highest rank. For example,
        requirements = Memory > 60
        rank = Memory
asks Condor to find all available machines with more than 60 megabytes of memory and give the job the one with the most amount of memory. See the Condor Users Manual for complete information on the syntax and available attributes that can be used in the ClassAd expression.

universe = <vanilla | standard | pvm | scheduler | globus | mpi | java>
Specifies which Condor Universe to use when running this job. The Condor Universe specifies a Condor execution environment. The standard Universe is the default, and tells Condor that this job has been re-linked via condor_ compile with the Condor libraries and therefore supports checkpointing and remote system calls. The vanilla Universe is an execution environment for jobs which have not been linked with the Condor libraries. Note: use the vanilla Universe to submit shell scripts to Condor. The pvm Universe is for a parallel job written with PVM 3.4. The scheduler is for a job that should act as a metascheduler. The globus universe uses the Globus GRAM API to contact the Globus resource specified and requests it run the job. The mpi universe is for running mpi jobs made with the MPICH package. The java Universe is for programs written to the Java Virtual Machine. See the Condor User's Manual for more information about using Universe.

on_exit_remove = <ClassAd Boolean Expression>
This expression is checked when the job exits and if true, then it allows the job to leave the queue normally. If false, then the job is placed back into the Idle state. If the user job is a vanilla job then it restarts from the beginning. If the user job is a standard job, then it restarts from the last checkpoint.

For example: Suppose you have a job that occasionally segfaults but you know if you run it again on the same data, chances are it will finish successfully. This is how you would represent that with on_exit_remove(assuming the signal identifier for segmentation fault is 4):

	on_exit_remove = (ExitBySignal == True) && (ExitSignal != 4)

The above expression will not let the job exit if it exited by a signal and that signal number was 4(representing segmentation fault). In any other case of the job exiting, it will leave the queue as it normally would have done.

If left unspecified, this will default to True.

periodic_* expressions(defined elsewhere in this man page) take precedent over on_exit_* expressions and a *_hold expression takes precedent over a *_remove expression.

This expression is available for the vanilla and java universes. It is additionally available, when submitted from a Unix machine, for the standard universe.

on_exit_hold = <ClassAd Boolean Expression>
This expression is checked when the job exits and if true, places the job on hold. If false then nothing happens and the on_exit_remove expression is checked to determine if that needs to be applied.

For example: Suppose you have a job that you know will run for an hour minimum. If the job exits after less than an hour, you would like it to be placed on hold and notified by e-mail instead of being allowed to leave the queue.

	on_exit_hold = (ServerStartTime - JobStartDate) < 3600

The above expression will place the job on hold if it exits for any reason before running for an hour. An e-mail will be sent to the user explaining that the job was placed on hold because this expression became true.

periodic_* expressions(defined elsewhere in this man page) take precedent over on_exit_* expressions and any *_hold expression takes precedent over a *_remove expression.

If left unspecified, this will default to False.

This expression is available for the vanilla and java universes. It is additionally available, when submitted from a Unix machine, for the standard universe.

periodic_remove = <ClassAd Boolean Expression>
This expression is checked every 20 seconds(non-configurable, but might be in future) and if it becomes true, the job will leave the queue. periodic_remove takes precedent over on_exit_remove if the two describe conflicting states.

For example: Suppose you would like your job removed if the total suspension time of the job is more than half of the run time of the job.

	periodic_remove = CumulativeSuspensionTime > (RemoteWallClockTime / 2.0)

The above expression will remove the job once the conditions have become true.

Note:Currently, this option will force a ``terminate'' event in the user log of the job and it will report a successful termination of the job. This reporting of this event will be changed in a future version of Condor to be a ``job aborted event'' with descriptions of who initiated the event. As it stands now, someone looking at the user log termination event wouldn't be able to tell the difference between a job that legitimately ended successfully and a job where the periodic_remove expression had become true.

periodic_* expressions(defined elsewhere in this man page) take precedent over on_exit_* expressions and any *_hold expression takes precedent over a *_remove expression.

If left unspecified, this will default to False.

This expression is available for the vanilla and java universes. It is additionally available, when submitted from a Unix machine, for the standard universe.

periodic_hold = <ClassAd Boolean Expression>
This expression is checked every 20 seconds(non-configurable, but might be in future) and if it becomes true, the job will be placed on hold.

For example: Suppose you would like your job held if the total suspension time of the job is more than half of the total run time of the job.

	periodic_hold = CumulativeSuspensionTime > (RemoteWallClockTime / 2.0)

The above expression will place the job on hold if it suspends longer than half the amount of time it has totally run. An e-mail will be sent to the user explaining that the job was placed on hold because this expression became true.

If left unspecified, this will default to False.

periodic_* expressions(defined elsewhere in this man page) take precedent over on_exit_* expressions and any *_hold expression takes precedent over a *_remove expression.

This expression is available for the vanilla and java universes. It is additionally available, when submitted from a Unix machine, for the standard universe.

priority = <priority>
Condor job priorities range from -20 to +20, with 0 being the default. Jobs with higher numerical priority will run before jobs with lower numerical priority. Note that this priority is on a per user basis; setting the priority will determine the order in which your own jobs are executed, but will have no effect on whether or not your jobs will run ahead of another user's jobs.

notification = <when>
Owners of Condor jobs are notified by email when certain events occur. If when is set to Always, the owner will be notified whenever the job is checkpointed, and when it completes. If when is set to Complete (the default), the owner will be notified when the job terminates. If when is set to Error, the owner will only be notified if the job terminates abnormally. If when is set to Never, the owner will not be mailed, regardless what happens to the job. The statistics included in the email are documented in section 2.6.5 on page [*].

notify_user = <email-address>
Used to specify the email address to use when Condor sends email about a job. If not specified, Condor will default to using :
        job-owner@UID_DOMAIN
where UID_DOMAIN is specified by the Condor site administrator. If UID_DOMAIN has not been specified, Condor will send the email to :
        job-owner@submit-machine-name

copy_to_spool = <True | False>
If copy_to_spool is set to True, then condor_ submit will copy the executable to the local spool directory before running it on a remote host. Oftentimes this can be quite time consuming and unnecessary. By setting it to False, condor_ submit will skip this step. Defaults to True.

getenv = <True | False>
If getenv is set to True, then condor_ submit will copy all of the user's current shell environment variables at the time of job submission into the job ClassAd. The job will therefore execute with the same set of environment variables that the user had at submit time. Defaults to False.

hold = <True | False>
If hold is set to True, then the job will be submitted in the hold state. Jobs in the hold state will not run until released by condor_ release.

environment = <parameter_list>
List of environment variables of the form :
        <parameter>=<value>
Multiple environment variables can be specified by separating them with a semicolon (`` ; '') when submitting from a Unix platform. Multiple environment variables can be specified by separating them with a vertical bar (`` | '') when submitting from an NT platform. These environment variables will be placed (as given) into the job's environment before execution. The length of all characters specified in the environment is currently limited to 10240 characters. Note that spaces are accepted, but rarely desired, characters within parameter names and values. Place spaces within the parameter list only if required.

log = <pathname>
Use log to specify a filename where Condor will write a log file of what is happening with this job cluster. For example, Condor will log into this file when and where the job begins running, when the job is checkpointed and/or migrated, when the job completes, etc. Most users find specifying a log file to be very handy; its use is recommended. If no log entry is specified, Condor does not create a log for this cluster.

jar_files = <file_list>
Specifies a list of additional JAR files to include when using the Java Universe. JAR files will be transferred along with the executable and automatically added to the classpath.

image_size = <size>
This command tells Condor the maximum virtual image size to which you believe your program will grow during its execution. Condor will then execute your job only on machines which have enough resources, (such as virtual memory), to support executing your job. If you do not specify the image size of your job in the description file, Condor will automatically make a (reasonably accurate) estimate about its size and adjust this estimate as your program runs. If the image size of your job is underestimated, it may crash due to inability to acquire more address space, e.g. malloc() fails. If the image size is overestimated, Condor may have difficulty finding machines which have the required resources. size must be in kbytes, e.g. for an image size of 8 megabytes, use a size of 8000.

machine_count = <min..max> | <max>
For the PVM universe, both min and max or just max may be defined. If machine_count is specified, Condor will not start the job until it can simultaneously supply the job with min machines. Condor will continue to try to provide up to max machines, but will not delay starting of the job to do so. If the job is started with fewer than max machines, the job will be notified via a usual PvmHostAdd notification as additional hosts come on line.

For the MPI universe, a single value (max) is required. It is neither a maximum or minimum, but the number of machines to be dedicated toward running the job.

coresize = <size>
Should the user's program abort and produce a core file, coresize specifies the maximum size in bytes of the core file which the user wishes to keep. If coresize is not specified in the command file, the system's user resource limit ``coredumpsize'' is used (except on HP-UX).

nice_user = <True | False>
Normally, when a machine becomes available to Condor, Condor decides which job to run based upon user and job priorities. Setting nice_user equal to True tells Condor not to use your regular user priority, but that this job should have last priority among all users and all jobs. So jobs submitted in this fashion run only on machines which no other non-nice_user job wants -- a true ``bottom-feeder'' job! This is very handy if a user has some jobs they wish to run, but do not wish to use resources that could instead be used to run other people's Condor jobs. Jobs submitted in this fashion have ``nice-user.'' pre-appended in front of the owner name when viewed from condor_ q or condor_ userprio. The default value is False.

kill_sig = <signal-number>
When Condor needs to kick a job off of a machine, it will send the job the signal specified by signal-number. signal-number needs to be an integer which represents a valid signal on the execution machine. For jobs submitted to the Standard Universe, the default value is the number for SIGTSTP which tells the Condor libraries to initiate a checkpoint of the process. For jobs submitted to the Vanilla Universe, the default is SIGTERM which is the standard way to terminate a program in UNIX.

compress_files = file1, file2, ...

If your job attempts to access any of the files mentioned in this list, Condor will automatically compress them (if writing) or decompress them (if reading). The compress format is the same as used by GNU gzip.

The files given in this list may be simple filenames or complete paths and may include * as a wildcard. For example, this list causes the file /tmp/data.gz, any file named event.gz, and any file ending in .gzip to be automatically compressed or decompressed as needed:

compress_files = /tmp/data.gz, event.gz, *.gzip

Due to the nature of the compression format, compressed files must only be accessed sequentially. Random access reading is allowed but is very slow, while random access writing is simply not possible. This restriction may be avoided by using both compress_files and fetch_files at the same time. When this is done, a file is kept in the decompressed state at the execution machine, but is compressed for transfer to its original location.

This option only applies to standard-universe jobs.

fetch_files = file1, file2, ...

If your job attempts to access a file mentioned in this list, Condor will automatically copy the whole file to the executing machine, where it can be accessed quickly. When your job closes the file, it will be copied back to its original location. This list uses the same syntax as compress_files, shown above.

This option only applies to standard-universe jobs.

append_files = file1, file2, ...

If your job attempts to access a file mentioned in this list, Condor will force all writes to that file to be appended to the end. Furthermore, condor_submit will not truncate it. This list uses the same syntax as compress_files, shown above.

This option may yield some surprising results. If several jobs attempt to write to the same file, their output may be intermixed. If a job is evicted from one or more machines during the course of its lifetime, such an output file might contain several copies of the results. This option should be only be used when you wish a certain file to be treated as a running log instead of a precise result.

This option only applies to standard-universe jobs.

local_files = file1, file2, ...

If your job attempts to access a file mentioned in this list, Condor will cause it to be read or written at the execution machine. This is most useful for temporary files not used for input or output. This list uses the same syntax as compress_files, shown above.

local_files = /tmp/*

This option only applies to standard-universe jobs.

file_remaps = < `` name = newname ; name2 = newname2 ... ''>

Directs Condor to use a new filename in place of an old one. name describes a filename that your job may attempt to open, and newname describes the filename it should be replaced with. newname may include an optional leading access specifier, local: or remote:. If left unspecified, the default access specifier is remote:. Multiple remaps can be specified by separating each with a semicolon.

This option only applies to standard-universe jobs.

If you wish to remap file names that contain equals signs or semicolons, these special characters may be escaped with a backslash.

This option only applies to standard-universe jobs.

Example One:
Suppose that your job reads a file named dataset.1. To instruct Condor to force your job to read other.dataset instead, add this to the submit file:
file_remaps = "dataset.1=other.dataset"
Example Two:
Suppose that your run many jobs which all read in the same large file, called very.big. If this file can be found in the same place on a local disk in every machine in the pool, (say /bigdisk/bigfile,) you can instruct Condor of this fact by remapping very.big to /bigdisk/bigfile and specifying that the file is to be read locally, which will be much faster than reading over the network.
file_remaps = "very.big = local:/bigdisk/bigfile"
Example Three:
Several remaps can be applied at once by separating each with a semicolon.
file_remaps = "very.big = local:/bigdisk/bigfile ; dataset.1 = other.dataset"

buffer_files = < `` name = (size,block-size) ; name2 = (size,block-size) ... '' >
buffer_size = <bytes-in-buffer>
buffer_block_size = <bytes-in-block>
Condor keeps a buffer of recently-used data for each file a job accesses. This buffer is used both to cache commonly-used data and to consolidate small reads and writes into larger operations that get better throughput. The default settings should produce reasonable results for most programs.

These options only apply to standard-universe jobs.

If needed, you may set the buffer controls individually for each file using the buffer_files option. For example, to set the buffer size to 1MB and the block size to 256KB for the file 'input.data', use this command:

buffer_files = "input.data=(1000000,256000)"

Alternatively, you may use these two options to set the default sizes for all files used by your job:

buffer_size = 1000000
buffer_block_size = 256000

If you do not set these, Condor will use the values given by these two config file macros:

DEFAULT_IO_BUFFER_SIZE = 1000000
DEFAULT_IO_BUFFER_BLOCK_SIZE = 256000

Finally, if no other settings are present, Condor will use a buffer of 512KB and a block size of 32KB.

rendezvousdir = <directory-path>
Used to specify the shared-filesystem directory to be used for filesystem authentication when submitting to a remote scheduler. Should be a path to a preexisting directory.

x509directory = <directory-path>
Used to specify the directory which contains the certificate, private key, and trusted certificate directory for GSS authentication. If this attribute is set, the environment variables X509_USER_KEY, X509_USER_CERT, and X509_CERT_DIR are exported with default values. See section 3.8.2 for more info.

x509userproxy = <full-pathname>
Used to override the default pathname for X509 user certificates. The default location for X509 proxies is the /tmp directory, which is generally a local filesystem. Setting this value would allow Condor to access the proxy in a shared filesystem (e.g., AFS). Condor will use the proxy specified in the submit file first. If nothing is specified in the submit file, it will use the environment variable X509_USER_CERT. If that variable is not present, it will search in the default location. See section 3.8.2 for more info.

globusscheduler = <scheduler-name>
Used to specify the Globus resource to which the job should be submitted. More than one scheduler can be submitted to, simply place a queue command after each instance of globusscheduler. Each instance should be a valid Globus scheduler, using either the full Globus contact string or the host/scheduler format shown below:
Example:
To submit to the LSF scheduler of the Globus gatekeeper on lego at Boston University:
...
GlobusScheduler = lego.bu.edu/jobmanager-lsf
queue

globusrsl = <RSL-string>
Used to provide any additional Globus RSL string attributes which are not covered by regular submit file parameters.

transfer_executable = <True | False>
If transfer_executable is set to false, then Condor look for the executable on the remote machine, and not transfer it over. This is useful if you have already pre-staged your executable, and wish to have Condor behave more like rsh. Defaults to True. This option is only used in the Globus universe.

+<attribute> = <value>
A line which begins with a '+' (plus) character instructs condor_ submit to simply insert the following attribute into the job ClasssAd with the given value.

queue [number-of-procs]
Places one or more copies of the job into the Condor queue. If desired, new input, output, error, initialdir, arguments, nice_user, priority, kill_sig, coresize, or image_size commands may be issued between queue commands. This is very handy when submitting multiple runs into one cluster with one submit file; for example, by issuing an initialdir between each queue command, each run can work in its own subdirectory. The optional argument number-of-procs specifies how many times to submit the job to the queue, and defaults to 1.

In addition to commands, the submit description file can contain macros and comments:

Macros
Parameterless macros in the form of $(macro_name) may be inserted anywhere in Condor submit description files. Macros can be defined by lines in the form of
 
        <macro_name> = <string>
Three pre-defined macros are supplied by the submit description file parser. The third of the pre-defined macros is only relevant to MPI universe jobs. The $(Cluster) macro supplies the number of the job cluster, and the $(Process) macro supplies the number of the job. These macros are intended to aid in the specification of input/output files, arguments, etc., for clusters with lots of jobs, and/or could be used to supply a Condor process with its own cluster and process numbers on the command line. The $(Process) macro should not be used for PVM jobs. The $(Node) macro is defined only for MPI universe jobs. It is a unique value assigned for the duration of the job that essentially identifies the machine on which a program is executing.

If the dollar sign (``$'') is desired as a literal character, then use

$(DOLLAR)

In addition to the normal macro, there is also a special kind of macro called a substitution macro that allows you to substitute expressions defined on the resource machine itself (gotten after a match to the machine has been performed) into specific expressions in your submit description file. The special substitution macro is of the form:

 
$$(attribute)

The substitution macro may only be used in three expressions in the submit description file: executable, environment, and arguments. The most common use of this macro is for heterogeneous submission of an executable:

executable = povray.$$(opsys).$$(arch)
The opsys and arch attributes will be substituted at match time for any given resource. This will allow Condor to automatically choose the correct executable for the matched machine.

An extension to the syntax of the substitution macro provides an alternative string to use if the machine attribute within the substitution macro is undefined. The syntax appears as:

 
$$(attribute:string_if_attribute_undefined)

An example using this extended syntax provides a path name to a required input file. Since the file can be placed in different locations on different machines, the file's path name is given as an argument to the program.

 
argument = $$(input_file_path:/usr/foo)
On the machine, if the attribute input_file_path is not defined, then the path /usr/foo is used instead.

The environment macro, $ENV, allows the evaluation of an environment variable to be used in setting a submit description file command. The syntax used is

 
$ENV(variable)
An example submit description file command that uses this functionality evaluates the submitter's home directory in order to set the path and file name of a log file:
 
log = $ENV(HOME)/jobs/logfile
The environment variable is evaluated when the submit description file is processed.

Comments
Blank lines and lines beginning with a pound sign ('#') character are ignored by the submit description file parser.

Options

-
Accept the command file from stdin.
-v
Verbose output - display the created job class-ad

-n schedd_name
Submit to the specified schedd. This option is used when there is more than one schedd running on the submitting machine

-r schedd_name
Submit to a remote schedd. The jobs will be submitted to the schedd on the specified remote host. On Unix systems, the Condor administrator for you site must override the default AUTHENTICATION_METHODS configuration setting to enable remote file system (FS_REMOTE) authentication.

-d
Disable file permission checks.

-a command
Augment the commands in the submit description file with the given command. This command will be considered to immediately precede the Queue command within the submit description file, and come after all other previous commands. The submit description file is not modified. Multiple commands are specified by using the -a option multiple times. Each new command is given in a separate -a option. Commands with spaces in them will need to be enclosed in double quote marks.

submit description file
The pathname to the submit description file. If this optional argument is missing, then the commands are taken from standard input.

Exit Status

condor_ submit will exit with a status value of 0 (zero) upon success, and a non-zero value upon failure.

Examples

General Remarks

See Also

Condor User Manual

Author

Condor Team, University of Wisconsin-Madison

Copyright

Copyright © 1990-2002 Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI. All Rights Reserved. No use of the Condor Software Program is authorized without the express consent of the Condor Team. For more information contact: Condor Team, Attention: Professor Miron Livny, 7367 Computer Sciences, 1210 W. Dayton St., Madison, WI 53706-1685, (608) 262-0856 or miron@cs.wisc.edu.

U.S. Government Rights Restrictions: Use, duplication, or disclosure by the U.S. Government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of The Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c)(1) and (2) of Commercial Computer Software-Restricted Rights at 48 CFR 52.227-19, as applicable, Condor Team, Attention: Professor Miron Livny, 7367 Computer Sciences, 1210 W. Dayton St., Madison, WI 53706-1685, (608) 262-0856 or miron@cs.wisc.edu.

See the Condor Version 6.5.0 Manual for additional notices.


next up previous contents index
Next: condor_ submit_dag Up: 9. Command Reference Manual Previous: condor_ status   Contents   Index
condor-admin@cs.wisc.edu