Submit-HpcJob

Submits or re-queues jobs to the HPC cluster.

Syntax

Submit-HpcJob
      -Job <HpcJob[]>
      [-Credential <PSCredential>]
      [-Scheduler <String[]>]
      [<CommonParameters>]
Submit-HpcJob
      [-Id] <Int32[]>
      [-Credential <PSCredential>]
      [-Scheduler <String[]>]
      [<CommonParameters>]

Description

The Submit-HpcJob cmdlet submits or re-queues one or more specified jobs to the HPC cluster that you want to run the jobs. You can use either the job IDs or HpcJob objects to specify the jobs. You can resubmit jobs that have a state of canceled or failed.

Examples

Example 1: Submit a job

PS C:\>Submit-HpcJob -Id 35 -Scheduler "MyHeadNode"

This command submits the job with job ID 35 on the cluster that has a head node named MyHeadNode.

Parameters

-Credential

Specifies a PSCredential object for the credentials you want to use to submit the jobs. You can use the Get-Credential cmdlet to get a PSCredential object. If you do not specify this parameter, then the cmdlet submits the jobs with the Windows credentials of the user currently logged in.

Type:PSCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Id

Specifies an array of job IDs for the jobs you want to submit.

Type:Int32[]
Position:1
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-Job

Specifies an array of HpcJob objects for the jobs that you want to submit for running on the cluster.

Type:HpcJob[]
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-Scheduler

Specifies the host name or IP address of the head node for the cluster to which you want to submit the jobs. The value must be a valid computer name. If you do not specify the Scheduler parameter, this cmdlet uses the scheduler on the head node that the CCP_SCHEDULER environment variable specifies. To set this environment variable, run the following cmdlet:

Set-Content Env:CCP_SCHEDULER \<head_node_name\>

Type:String[]
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Inputs

HpcJob[]

Outputs

HpcJob[]

Notes

  • After you submit the job, the job scheduler validates the job and enters the job in the job queue. The job scheduler waits to start the job until sufficient resources become available.
  • In HPC Pack 2012 with Service Pack 1 (SP1), a cluster member added as a job operator can use this cmdlet to requeue (but not submit) a job. However, a job operator cannot modify any job properties at the time that the job is requeued.