Reviewable
A pipeline is a document. It fits in a pull request, diffs cleanly between environments, and does not hide behind notebook cell state.
Sparquet is two things that share one file.
The framework is a Python library that reads a pipeline described in JSON and executes it on Spark: it reads a source, applies transformations in order, checks data quality rules, and writes one or more destinations.
Sparquet Studio is a browser application that draws that same JSON on a node canvas — and compiles the canvas straight back into it.
The document is the contract. The framework never needs Studio to run a job, and Studio never invents syntax the framework does not support.
{ "name": "orders_curated", "input": { "format": "delta", "path": "sales.orders" }, "transformations": [ { "type": "filter", "condition": "status = 'CONFIRMED'" }, { "type": "with_column", "column": "revenue", "expression": "quantity * unit_price" } ], "validations": { "on_failure": "warn", "rules": [{ "type": "not_null", "columns": ["id"] }] }, "output": { "format": "delta", "path": "analytics.orders", "mode": "overwrite" }}from sparquet import Sparquet
fw = Sparquet()print(fw.run("orders_curated.json").summary())fw.stop()That is the entire surface: a file and a call. Everything else in these docs is a field you can add to that file.
Reviewable
A pipeline is a document. It fits in a pull request, diffs cleanly between environments, and does not hide behind notebook cell state.
Reusable
{param} placeholders turn one file into many runs — per region, per date,
per client — without copying logic.
Consistent
Reads, writes, merges and quality checks behave the same way in every job, because they are the same code path.
Visual, when useful
The canvas is an editor for the file, not a replacement. Delete Studio and every job keeps running.
sql transformations and custom registrations do.Install — the framework, and optionally Studio.
Your first pipeline — a working job in five minutes, from the terminal.
Your first job in Studio — the same pipeline, drawn on the canvas.
Core concepts — execution order, and how a graph maps onto the file.
Reference — every transformation, connector, validator and API, field by field.
Guides — end-to-end recipes: databases, joins with pushdown, data quality, incremental loads.