Skip to main content
The DAG (Directed Acyclic Graph) defines how data flows through your Tangent pipeline.

Schema

list
Each entry describes a flow from one node to one or more downstream nodes.
  • from.kind: source, plugin, or sink
  • from.name: name of the node
  • to: list of destination nodes

Example

tangent.yaml

🧠 Notes

  • The DAG determines execution order.
  • Multiple plugins or sinks can receive data from one source.
  • Cycles are not allowed (it must remain acyclic).