Tutorial Pipeline
This is the pipeline you build in the Getting Started tutorial. Click any node to inspect its Python code or table schema.
Publisher
pub
pub
Publisher
Committed
Table
persons
persons
//tutorial
✓Data Available
Transformer
tfr
tfr
Transformer
Committed
Table
spanish
spanish
//tutorial
✓Data Available
Table
french
french
//tutorial
✓Data Available
Table
german
german
//tutorial
✓Data Available
Click any node to inspect code or schema
How it works
The pipeline has three stages:
- Publisher (
pub) — reads CSV files from disk, renames columns, and writes to thepersonstable. - Transformer (
tfr) — readspersons, filters rows by language, and writes three output tables. - Tables —
spanish,french, andgermaneach hold the filtered rows for subscribers to consume.
The dashed blue line between persons → tfr represents a data-dependency edge: the transformer triggers automatically whenever persons is updated.