NodeStatus enumeration

Defines the node status constants.

Syntax

typedef enum  { 
  NodeStatus_Ready        = 0,
  NodeStatus_Paused       = 1,
  NodeStatus_Unreachable  = 2,
  NodeStatus_Pending      = 3
} NodeStatus;

Constants

  • NodeStatus_Ready
    The node is ready to run jobs.

  • NodeStatus_Paused
    The ICluster::PauseNode method was called. No new jobs or tasks can be started while the node is paused, but existing jobs and tasks can still run. To resume the node, call the ICluster::ResumeNode method.

  • NodeStatus_Unreachable
    Communication with the node has been broken.

  • NodeStatus_Pending
    Node approval is pending. To approve the node for addition to the cluster, call the ICluster::ApproveNode method.

Requirements

Product

Compute Cluster Pack Client Utilities

Type library

Ccpapi.tlb

See also

CCP Enumerations

INode::get_Status