Skip to main content
Version: 0.2

v0.1 vs v0.2

v0.1 supported batch analytics. v0.2 allows for true real-time analytics – as you'd expect from a system like ClickHouse.

The fundamental difference is the write ingestion patterns supported in v0.1 compared to v0.2.

Ingestion Pattern

v0.1: Manual Batch uploads

  1. Batch writes - Data written to columnstore tables in batches
  2. Manual optimization - Requires manual compaction and file optimization
  3. Dual-write pattern - Applications write to OLTP tables, then users have to manually set up batch-load into columnstore

v0.2: streaming inserts/upserts

  1. zeroETL from Postgres tables - create a columnstore mirror of a Postgres table.
  2. Streaming ingestion - ingest ~1M transactions per second including inserts, updates, and deletes
  3. Zero maintenance - Columnstore tables always in a read-optimized state

Feature Comparison

Featurev0.1v0.2
Analytics Performance✅ Fast queries✅ Fast queries
Write PatternBatch writes onlyStreaming + batch writes
Point Operations❌ No updates/deletes✅ Full CRUD support
Object Storage✅ Available🚧 Coming soon
Neon Integration✅ Available🚧 Coming soon
Table FormatDelta LakeIceberg
Primary Use CaseData warehousing & archivalReal-time analytics + managed Iceberg