JobState Simple Type

Defines the possible states of a job.

<xs:simpleType name="JobState">
    <xs:restriction
        base="string"
    >
        <xs:enumeration
            value="Configuring"
         />
        <xs:enumeration
            value="Submitted"
         />
        <xs:enumeration
            value="Validating"
         />
        <xs:enumeration
            value="ExternalValidation"
         />
        <xs:enumeration
            value="Queued"
         />
        <xs:enumeration
            value="Running"
         />
        <xs:enumeration
            value="Finishing"
         />
        <xs:enumeration
            value="Finished"
         />
        <xs:enumeration
            value="Failed"
         />
        <xs:enumeration
            value="Canceled"
         />
        <xs:enumeration
            value="Canceling"
         />
    </xs:restriction>
</xs:simpleType>

Enumeration values

The JobState simple type defines the following values.

Value Description
Configuring

The job is being configured.

Submitted

The job was submitted to the scheduling queue.

Validating

The server is determining if the job can run.

ExternalValidation

A submission filter is determining if the job can run.

Queued

The job passed validation and was added to the scheduling queue.

Running

The job is running.

Finishing

The server is cleaning up the resources that were allocated to the job.

Finished

The job successfully finished (all the tasks in the job finished successfully).

Failed

One or more of the tasks in the job failed or a system error occurred on the compute node.

Canceled

The job was canceled.

Canceling

The job is in the process of being canceled.

Requirements

Product

HPC Pack 2008 Client Utilities