TaskState Simple Type

Defines the possible states of a task.

<xs:simpleType name="TaskState">
    <xs:restriction
        base="string"
    >
        <xs:enumeration
            value="Configuring"
         />
        <xs:enumeration
            value="Submitted"
         />
        <xs:enumeration
            value="Validating"
         />
        <xs:enumeration
            value="Queued"
         />
        <xs:enumeration
            value="Dispatching"
         />
        <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 TaskState simple type defines the following values.

Value Description
Configuring

The task is being configured.

Submitted

The task was added to the scheduling queue.

Validating

The scheduler is determining if the task is correctly configured and can run.

Queued

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

Dispatching

The scheduler is in the process of sending the task to the node to run.

Running

The task is running.

Finishing

The node is cleaning up the resources that were allocated to the task.

Finished

The task successfully finished.

Failed

The task failed, the job was canceled, or a system error occurred on the compute node.

Canceled

The task was canceled.

Canceling

The task is in the process of being canceled.

Requirements

Product

HPC Pack 2008 Client Utilities