The Grammar of Data: Define Once, Run Anywhere with Cross-Engine Expressions
3.4 Key Insight: A declarative grammar for data engineering — where transformations are expressed once as composable, engine-agnostic expressions serialized into content-addressed manifests — eliminates the anti-pattern of re-implementing logic per system and makes pipelines reproducible by both humans and AI agents across any execution engine.
Simon Späti argues that data engineering needs a 'grammar' — a declarative language for expressing transformations that can be defined once and executed across multiple compute engines without modification. Drawing on linguistic analogy (sources as nouns, transforms as verbs, templates, modifiers), he explains how Ibis provides the expression layer and xorq extends it with cross-engine execution, content-addressed YAML manifests, lineage tracking, and git-native storage. The core pattern is write → manifest → execute, where the manifest step produces a deterministic, hashed artifact that can run on DuckDB, Postgres, Snowflake, DataFusion, or others interchangeably. Xorq uses Apache Arrow RecordBatch streams as the data pipe between engines, avoiding CSV/JSON serialization overhead. The author positions this 'horizontal data stack' as the antidote to both vertically integrated silos and the inner-platform effect, and argues the same grammar benefits LLMs by giving them structured, reproducible, interchangeable artifacts to reason about.
5 unix : programs :: xorq : arrow-transforms
4 Writing the sentence and saying it out loud are two different acts.
4 UDA is a semantic layer defining what data means across systems. Xorq is a computational layer defining what transformations do across engines. Both reject the same anti-pattern of…
Data EngineeringData Platforms