YOU ARE VIEWING ONE ITEM FROM THE AICRIER FEED

Turbolite serves sub-250ms SQLite joins from S3

AICrier tracks AI developer news across Product Hunt, GitHub, Hacker News, YouTube, X, arXiv, and more. This page keeps the article you opened front and center while giving you a path into the live feed.

// WHAT AICRIER DOES

7+

TRACKED FEEDS

24/7

SCRAPED FEED

Short summaries, external links, screenshots, relevance scoring, tags, and featured picks for AI builders.

Turbolite serves sub-250ms SQLite joins from S3
OPEN LINK ↗
// 63d agoOPENSOURCE RELEASE

Turbolite serves sub-250ms SQLite joins from S3

turbolite is a Rust SQLite VFS that groups pages by tree, stores them as seekable zstd bundles in S3, and uses query-plan-aware prefetching to keep cold point lookups and joins usable. The project is explicitly experimental, and the author warns it may still corrupt data.

// ANALYSIS

This is a smart answer to the wrong question: not "can SQLite run on S3?" but "how much of SQLite's page model do you need to rethink before S3 stops feeling absurd?" For cold, read-heavy multi-tenant databases, turbolite looks promising, but it is still firmly a systems experiment with sharp edges.

  • B-tree-aware grouping is the core unlock; interior, index, and table pages have very different access patterns, so page-at-a-time GETs would waste requests immediately.
  • Query-plan frontrunning is the cleverest trick here; it turns joins into parallel prefetch work instead of a serial miss/fetch chain.
  • The manifest pointer model and seekable zstd frames fit object storage well, but they also create a bespoke on-disk format that will take real hardening to trust.
  • For database-per-tenant or database-per-session apps, the value prop is real: keep cold SQLite files off attached volumes and only pay S3 when those tenants wake up.
  • The single-writer limit, corruption warning, and backend spread all say the same thing: this is not a generic replacement for local SQLite yet, just an ambitious cloud-storage prototype.
// TAGS
open-sourceclouddata-toolsdevtoolturbolite

DISCOVERED

63d ago

2026-03-26

PUBLISHED

64d ago

2026-03-26

RELEVANCE

5/ 10

AUTHOR

russellthehippo