WHAT'S INSIDE
- Instant clones — CREATE CLONE, sub-second copy-on-write at any size
- pg_dump round-trip + physical backup
- Hot / warm / cold storage tiering (S3 cold tier in preview)
- Per-range Raft consensus with automatic leader failover*
- Horizontal scale-out by adding nodes*
- Multi-region: REGIONAL BY ROW, GLOBAL tables, follower reads*
- Point-in-time recovery via WAL replay*
- Scale-to-zero serverless*
*In development — not yet production-ready.
instant clone
-- sub-second, copy-on-write: hard links, not data copies
CREATE CLONE dev FROM ezra;
ALTER CLONE dev DETACH;
DROP CLONE dev;
THE REST OF THE ENGINE