(Click to open topic with navigation)
Synopsis
msub [-a datetime][-A account][-c interval][-C directive_prefix][-d path] [-e path][-E][-F][-h][-I][-j join][-k keep][-K][-l resourcelist][-m mailoptions] [-M user_list][-N name][-o path][-p priority][-q destination][-r] [-S pathlist][-t jobarrays][-u userlist][-v variablelist][-V] [-W additionalattributes][-x][-z][script]
Overview
msub allows users to submit jobs directly to Moab. When a job is submitted directly to a resource manager (such as TORQUE), it is constrained to run on only those nodes that the resource manager is directly monitoring. In many instances, a site may be controlling multiple resource managers. When a job is submitted to Moab rather than to a specific resource manager, it is not constrained as to what nodes it is executed on. msub can accept command line arguments (with the same syntax as qsub), job scripts (in either PBS or LoadLeveler syntax), or the SSS Job XML specification.
Moab must run as a root user in order for msub submissions to work. Workload submitted via msub when Moab is running as a non-root user fail immediately.
Submitted jobs can then be viewed and controlled via the mjobctl command.
Flags specified in the following table are not necessarily supported by all resource managers.
Access
When Moab is configured to run as root, any user may submit jobs via msub.
Flags
-A | |
---|---|
Name | Account |
Format | <ACCOUNT NAME> |
Description | Defines the account associated with the job. |
Example |
> msub -A research cmd.pbs Moab will associate this job with account research. |
-h | |
---|---|
Name | Hold |
Description | Specifies that a user hold be applied to the job at submission time. |
Example |
> msub -h cmd.ll The job will be submitted with a user hold on it. |
-K | |
---|---|
Name | Continue Running |
Format | N/A |
Description | Tells the client to continue running until the submitted job is completed. The
client will query the status of the job every 5 seconds. The time interval
between queries can be specified or disabled via MSUBQUERYINTERVAL.
Use the -K option sparingly (if at all) as it slows down the Moab scheduler with frequent queries. Running ten jobs with the -K option creates an additional fifty queries per minute for the scheduler. |
Example |
> msub -K newjob.sh 3 Job 3 completed* *Only shows up after job completion. |
-l | |
---|---|
Name | Resource List |
Format | <STRING>
-l [BANDWIDTH|DDISK|DEADLINE|DEPEND|DMEM|EXCLUDENODES|FEATURE...|] Additional options can be referenced on the resource manager extensions page. |
Description |
Defines the resources that are required by the job and establishes a limit to the amount of resource that can be consumed. Resources native to the resource manager, scheduler resource manager extensions, or job flags may be specified. Note that resource lists are dependent on the resource manager in use. For information on specifying multiple types of resources for allocation, see Multi-Req Support. |
Example |
> msub -l nodes=32:ppn=2,pmem=1800mb,walltime=3600,VAR=testvar:myvalue cmd.sh The job requires 32 nodes with 2 processors each, 1800 MB per task, a walltime of 3600 seconds, and a variable named testvar with a value of myvalue. If JOBNODEMATCHPOLICY is not set, Moab does not reserve the requested number of processors on the requested number of nodes. It reserves the total number of requested processors (nodes x ppn) on any number of nodes. Rather than setting nodes=<value>:ppn=<value>, set procs=<value>, replacing <value> with the total number of processors the job requires. Note that JOBNODEMATCHPOLICY is not set by default. > msub -l nodes=32:ppn=2 -l advres=!<resvid> This entry would tell Moab to only consider resources outside of the specified <reservation id>. |
-M | |
---|---|
Name | Mail List |
Format | <user>[@<host>][,<user>[@<host>],...] |
Default | $JOBOWNER |
Description | Specifies the list of users to whom mail is sent by the execution server. Overrides the EMAILADDRESS specified on the USERCFG credential. |
Example |
> msub -M jon@node01,bill@node01,jill@node02 cmd.sh Mail will be sent to the specified users if the job is aborted. |
-p | |
---|---|
Name | Priority |
Format | <INTEGER> (between -1024 and 0) |
Default | 0 |
Description | Defines the priority of the job. To enable priority range from -1024 to +1023, see ENABLEPOSUSERPRIORITY. |
Example |
> msub -p 25 cmd.sh The job will have a user priority of 25. |
-r | |
---|---|
Name | Rerunable |
Format | [y|n] |
Default | n |
Description: | Declares whether the job is rerunable. |
Example |
> msub -r n cmd.sh The job cannot be rerun. |
-t | |
---|---|
Name | Job Arrays |
Format | <name>.[<indexlist>]%<limit> |
Description | Starts a job array with the jobs in the index list.
The limit variable specifies how many jobs may run at a time. For more
information, see Submitting Job
Arrays.
Moab enforces an internal limit of 100,000 sub-jobs that a single array job submission can specify. |
Example |
> msub -t myarray.[1-1000]%4 |
-W | |
---|---|
Name | Additional Attributes |
Format | <string> |
Description | Allows for specification of additional job attributes (See Resource Manager Extension) |
Example |
> msub -W x=GRES:matlab:1 cmd.sh The job requires one resource of matlab. This flag can be used to set a filter for what name spaces will be passed from a job to a trigger using a comma-delimited list. This limits the trigger's action to objects contained in certain workflows. For more information, see Requesting name space variables. > msub -W x="trigns=vc1,vc2" The job passes name spaces vc1 and vc2 to triggers. |
-z | |
---|---|
Name | Silent Mode |
Description | The job's identifier will not be printed to stdout upon submission. |
Example |
> msub -z cmd.sh No job identifier will be printout the stdout upon successful submission. |
The msub command supports job scripts written in any one of the following languages:
Language | Notes |
---|---|
PBS/TORQUE Job Submission Language | --- |
LoadLeveler Job Submission Language | Use the INSTANTSTAGE parameter as only a subset of the command file keywords are interpreted by Moab. |
SSS XML Job Object Specification | --- |
LSF Job Submission Language | enabled in Moab 4.2.4 and higher |
Sites that wish to automatically add parameters to every job submission can populate the file /etc/msubrc with global parameters that every job submission will inherit.
For example, if a site wished every job to request a particular generic resource they could use the following /etc/msubrc:
-W x=GRES:matlab:2
Usage Notes
msub is designed to be as flexible as possible, allowing users accustomed to PBS, LSF, or LoadLeveler syntax, to continue submitting jobs as they normally would. It is not recommended that different styles be mixed together in the same msub command.
When only one resource manager is configured inside of Moab, all jobs are immediately staged to the only resource manager available. However, when multiple resource managers are configured Moab will determine which resource manager can run the job soonest. Once this has been determined, Moab will stage the job to the resource manager.
It is possible to have Moab take a best effort approach at submission time using the forward flag. When this flag is specified, Moab will do a quick check and make an intelligent guess as to which resource manager can run the job soonest and then immediately stage the job.
Moab can be configured to instantly stage a job to the underlying resource manager (like TORQUE/LOADLEVELER) through the parameter INSTANTSTAGE. When set inside moab.cfg, Moab will migrate the job instantly to an appropriate resource manager. Once migrated, Moab will destroy all knowledge of the job and refresh itself based on the information given to it from the underlying resource manager.
In most instances Moab can determine what syntax style the job belongs to (PBS or LoadLeveler); if Moab is unable to make a guess, it will default the style to whatever resource manager was configured at compile time. If LoadLeveler and PBS were both compiled then LoadLeveler takes precedence.
Moab can translate a subset of job attributes from one syntax to another. It is therefore possible to submit a PBS style job to a LoadLeveler resource manager, and vice versa, though not all job attributes will be translated.
Examples
Example 4-39:
> msub -l nodes=3:ppn=2,walltime=1:00:00,pmem=100kb script2.pbs.cmd 4364.orion
Example 4-40:
This example is the XML-formatted version of the above example. See Submitting Jobs via msub in XML for more information.
<job> <InitialWorkingDirectory>/home/user/test/perlAPI </InitialWorkingDirectory> <Executable>/home/user/test/perlAPI/script2.pbs.cmd </Executable> <SubmitLanguage>PBS</SubmitLanguage> <Requested> <Feature>ppn2</Feature> <Processors>3</Processors> <WallclockDuration>3600</WallclockDuration> </Requested> </job>
Related topics