Promptles
Data & Transformation

Data Pipeline

intermediate

Definition

An automated flow that extracts data from a source, transforms it into a useful shape, and loads it into a destination. Often called ETL (Extract, Transform, Load). Data pipelines run on a schedule to keep dashboards, reports, and databases up to date.

In the wild

A nightly pipeline pulls raw sales data from Stripe (extract), calculates daily revenue and groups it by product (transform), and writes the summary into a reporting database (load). The dashboard reads from the reporting database each morning.

More from Data & Transformation