# Serverless database

**Source:** https://promtable.com/glossary/serverless-database

> A serverless database scales compute and storage independently and bills based on actual use — no fixed instance provisioning — typical of Neon, PlanetScale, Supabase, Convex in 2026.

---
A serverless database scales compute and storage independently and bills based on actual use — no fixed instance provisioning — typical of Neon, PlanetScale, Supabase, Convex in 2026.

Serverless databases replace provisioned instances with usage-billed compute and storage. The win: scale to zero during idle periods, scale up automatically under load, pay only for what you use. The trade-off: cold-start latency on first request after idle, less predictable cost at very high scale. By 2026 serverless Postgres (Neon, Supabase, Xata) and serverless MySQL (PlanetScale) dominate new web app deployments. Best practice: pick serverless for variable / spiky workloads; provisioned still wins for steady high-throughput production.

## When to use

- Variable / spiky workloads.
- Multi-tenant apps where many tenants are idle most of the time.
- Cost-sensitive dev / staging environments.

## Common mistakes

- Using serverless for steady high-throughput — predictable provisioned is often cheaper.
- Ignoring cold-start in latency budgets.

## Related terms

- [cold-start](https://promtable.com/glossary/cold-start)
- [vector-database](https://promtable.com/glossary/vector-database)

*Last updated: 2026-06-01*
---

Original page: https://promtable.com/glossary/serverless-database
Maintained by Promtable (https://promtable.com). Content: CC BY 4.0. Cite as "Promtable — https://promtable.com/glossary/serverless-database".
Contact: info@vibecodingturkey.com.