Class WorkflowNode (5.9.3)

WorkflowNode(mapping=None, *, ignore_unknown_fields=False, **kwargs)

The workflow node.

Attributes

NameDescription
step_id str
Output only. The name of the node.
prerequisite_step_ids MutableSequence[str]
Output only. Node's prerequisite nodes.
job_id str
Output only. The job id; populated after the node enters RUNNING state.
state google.cloud.dataproc_v1.types.WorkflowNode.NodeState
Output only. The node state.
error str
Output only. The error detail.

Classes

NodeState

NodeState(value)

The workflow node state.

Values: NODE_STATE_UNSPECIFIED (0): State is unspecified. BLOCKED (1): The node is awaiting prerequisite node to finish. RUNNABLE (2): The node is runnable but not running. RUNNING (3): The node is running. COMPLETED (4): The node completed successfully. FAILED (5): The node failed. A node can be marked FAILED because its ancestor or peer failed.