Skip to content

RuntimeLineageNode

RuntimeLineageNode = object

Defined in: execution/lineage.ts:29

Lineage information for a single execution node.

Captures the state of data as it passed through this node, including input, output, transform info, and any failures.

readonly optional extractions: readonly Extraction[]

Defined in: execution/lineage.ts:35

Extractions performed (for emit nodes)


readonly optional failure: Failure

Defined in: execution/lineage.ts:43

Failure if this node failed


readonly optional input: unknown

Defined in: execution/lineage.ts:39

Input value received by this node


readonly nodeId: NodeId

Defined in: execution/lineage.ts:31

The AST node ID this lineage corresponds to


readonly optional output: unknown

Defined in: execution/lineage.ts:41

Output value produced by this node


readonly optional outputTransforms: readonly OutputTransformSpec[]

Defined in: execution/lineage.ts:37

Output transforms applied (for mapOut nodes)


readonly optional transform: TransformAst

Defined in: execution/lineage.ts:33

Transform specification (for transform nodes)