NEW In-Memory Pseudonymisation. Raw data never reaches your lake. Zero-exposure GDPR compliance. See How It Works →
Skip to content
Now Generally Available

Your Entire Data Stack.
One Unified Platform.

Graph your tables. Index a billion GPS points. Travel back to version 42. Parse a FHIR document in the same query that joins an Iceberg snapshot. Commit the pipeline to Git and get lineage automatically. One SQL engine. Your cloud or your datacenter.

Delta Forge CREATE DELTA TABLE customers ( id BIGINT, name STRING, tier STRING ) LOCATION '/lake/customers'; SELECT name, tier FROM customers VERSION AS OF 3 WHERE tier = 'Gold' ORDER BY name; PostgreSQL DELTA FORGE Transformation Engine Delta Lake ACID • Time Travel Parquet Columnar Storage S3 / ADLS / GCS Object Storage v42 v41 v40 Lakehouse Delta + Iceberg Native V3 Read & Write Graph & Geo Native Analytics Any Cloud Or Your Datacenter
Delta + Iceberg
Both open formats, native read & write
Graph + Geo
Built-in analytics, no plugins
Any Cloud
Or your own datacenter
The SQL You Know. The Lakehouse You Need.

PostgreSQL Semantics.
Lakehouse-Scale Power.

If you know PostgreSQL, you know Delta Forge. Same SQL semantics, same functions, same transaction model. Plus Delta Lake and Iceberg commands like VACUUM, OPTIMIZE, and time travel as first-class SQL -- not PySpark notebooks.

1

Open the Desktop GUI, VS Code, or CLI

Full SQL environment with IntelliSense and live results

2

Write the SQL you already know

200+ functions, CTEs, window functions, PL/pgSQL procedures

3

Query Delta Lake, Iceberg, Graphs, and Maps

Time travel, spatial joins, graph algorithms -- all in one query

Terminal - Delta Forge
CREATE DELTA TABLE customers (
id BIGINT,
name STRING,
tier STRING,
lifetime_value DOUBLE
) LOCATION 's3://lake/customers'
TBLPROPERTIES (
'delta.enableChangeDataFeed' = 'true');
 
SELECT name, tier, lifetime_value
FROM customers VERSION AS OF 3
WHERE tier = 'Gold'
ORDER BY lifetime_value DESC;
name | tier | lifetime_value
---------+------+----------------
Alice | Gold | 9840.50
Carol | Gold | 7210.00
(2 rows)
|
Unified Data Platform

Your Data Team Shouldn't
Be Running Five Systems.

A Spark cluster to touch Delta files. A graph database for network analysis. A geospatial service for location data. A lineage tool no one trusts. Format converters keeping everything talking. Delta Forge unifies all of it, runs it in SQL, and deploys on infrastructure you already own.

01 / Open Table Formats

Delta Lake and Iceberg V3. Both. Native.

Delta Forge reads and writes both formats from the same SQL engine. No converters, no connectors, no ETL between ecosystems. Write to Delta, expose it as Iceberg automatically via UniForm. Time travel, ACID, schema evolution, deletion vectors -- all available as SQL commands.

Delta Lake
SELECT region, SUM(revenue)
FROM orders VERSION AS OF 42
GROUP BY region;
Iceberg V3
CREATE ICEBERG TABLE metrics (
  day DATE, value DOUBLE
) LOCATION 's3://lake/metrics';
Time Travel ACID UniForm Schema Evolution
02 / Analytics Beyond Tables

Graph and Geospatial. No Separate System Required.

15+ graph algorithms run as SQL table functions against your Delta tables directly. H3 geospatial indexing handles billion-point spatial joins in the same query. Combine PageRank results with a spatial filter and JOIN back to your lake data, all in one SQL statement. No graph database. No geo microservice.

Graph Analytics
SELECT c.name, pr.score
FROM cypher('network', $$
  CALL algo.pageRank({dampingFactor: 0.85})
  YIELD node_id, score RETURN node_id, score
$$) AS (node_id BIGINT, score DOUBLE) pr
JOIN customers c ON pr.node_id = c.id
ORDER BY pr.score DESC LIMIT 10;
H3 Geospatial
SELECT h3_cell_to_string(
         h3_latlng_to_cell(lat, lng, 9)
       ) AS hex_cell,
       COUNT(*) AS visit_count
FROM gps_points
GROUP BY hex_cell
ORDER BY visit_count DESC;
PageRank Community Detection H3 Indexing Cypher
03 / Lineage and Pipelines

Your Git Repo Is Your Pipeline Engine.

Write a SQL file. Commit it. Delta Forge scans your repo, schedules it, and builds the full data lineage graph automatically from your source code. No drag-and-drop DAG builders. No manual lineage annotation. Every table transformation is traced, every dependency is known, and your pipelines are code-reviewed like everything else.

Git-Native Pipeline
PIPELINE 'daily_revenue'
  SCHEDULE '0 2 * * *'
  NOTIFY ON FAILURE 'ops@acme.com'
  RETRIES 3;
Auto Lineage
-- Delta Forge reads your .sql files
-- and traces: raw_events
--   -> enriched_events
--   -> revenue_summary
-- Zero config. Zero annotation.
Git-Native Auto Lineage Scheduling Zero Config
Runs on your infrastructure
AWS + Azure + Google Cloud + Your Datacenter + Air-Gapped
No vendor dependencies. Full data sovereignty.
Platform Capabilities

Everything You Need
In One Platform

Open Table Formats

Delta Lake & Apache Iceberg
All the Features You Need

Time Travel

Query any previous version of your table by version number or timestamp. Audit trails and reproducibility built in.

SELECT * FROM customers VERSION AS OF 3

Schema Evolution

Add, rename, or reorder columns without rewriting data. Automatic schema enforcement on write.

Change Data Feed

Track row-level changes for incremental processing. Before and after images for every modification.

Deletion Vectors

Efficient row-level deletes without file rewrites. Reduces write amplification and conflict potential.

Apache Iceberg

Native V1/V2/V3 Iceberg support. Same SQL engine for both Delta and Iceberg tables. Partition evolution, hidden partitioning, and snapshot isolation.

UniForm Interop

Expose Delta tables as Iceberg via UniForm. One write path, both ecosystems. No data duplication, no ETL pipeline between formats.

Complete Platform

SQL Engine & Beyond

PL/pgSQL Procedures

Full procedural language support. Variables, loops, cursors, exceptions, and RETURN NEXT for set-returning functions.

Procedure Guide →

Data Connectors

PostgreSQL, MySQL, SQL Server. S3, Azure, GCS. CSV, JSON, XML, Parquet, ORC, Avro. Predicate pushdown where supported.

Connector List →

User-Defined Functions

Scalar, aggregate, window, and table functions. Write in Python or JavaScript with Arrow integration.

UDF Guide →

Security

Role-based access control. Column-level grants. Dynamic data masking. Row-level security. Audit logging.

Security Docs →

Pseudonymisation

GDPR Article 25 compliant data protection. keyed_hash, encrypt, redact, mask, generalize transforms. Runtime or permanent.

See Demo →

Developer Tools

Desktop application built with Tauri and React. VS Code extension with query editing and results viewing.

Tools Guide →
Zero
Cluster Provisioning Wait
8
Native File Formats
300+
SQL Functions
3
Analytics Engines
2
Open Table Formats
Ready for Production

One Platform.
Every Format. Any Infrastructure.

Delta Lake, Iceberg V3, graph analytics, geospatial, and auto lineage -- unified in one SQL engine. Use the Desktop GUI, VS Code extension, or CLI. Runs on AWS, Azure, GCS, on-premises, or air-gapped.

Delta Lake + Iceberg V3 Graph and Geospatial Self-Hosted Data Sovereignty