Serverless QuestDB

High-throughput time-series with SQL. ILP ingestion endpoints, web SQL console, the same fast queries you expect from QuestDB.

SQL Console
QuestDB

Tables

  • users
  • events
  • orders
  • sessions
SELECT id, name, created_at
FROM events
WHERE created_at > NOW() - INTERVAL '7 days'
ORDER BY id DESC LIMIT 5;
idnamecreated_at
1247signup2026-03-12 14:21
1246purchase2026-03-12 14:08
1245login2026-03-12 13:55
1244signup2026-03-12 13:44
1243purchase2026-03-12 13:30
5 rows · 12ms

Production features, free tier included

Every QuestDB database ships with the same primitives: TLS, web console, hibernation, and a real dashboard. No tiered features hidden behind a sales call.

Web IDE

Query console in the dashboard, no extra client to install.

Included

TLS by default

All connections encrypted. No setup required.

Included

Always-on connections

Optional keep-alive add-on prevents hibernation.

Included

Scale to zero

Hibernates when idle. Wakes on the next connection.

Included

Connection pooling

Pooled endpoint for serverless and edge workloads.

Included

Direct connections

Bypass the pooler for migrations and replication.

Included

HTTPS access

HTTP-native engines reachable over port 443.

Included

Serverless driver

Upstash REST or PlanetScale serverless drivers supported.

Not available

IP whitelisting

Restrict access to specific IPs or CIDR ranges.

Included

Automatic backups

Scheduled point-in-time backups with one-click restore.

Included

Connect with any QuestDB client

Financial market data, IoT telemetry, observability metrics, ad-tech, and any high-throughput time-series workload with strict latency requirements.

  • Ingest IoT or trading data over ILP, query with SQL from any Postgres client
  • Build an observability backend that holds tight latency budgets
  • Per-environment time-series stores for production-shaped staging
  • Prototype a real-time dashboard against QuestDB on the desktop, deploy to cloud
  • Self-host on your own hardware with SpinDB
bashQuestDB
psql "postgresql://layerbase:password@your-host.cloud.layerbase.dev:5432/qdb?sslmode=require"

Common QuestDB questions

How do I ingest data?+

QuestDB accepts InfluxDB Line Protocol (ILP) for fast ingestion and Postgres wire protocol for SQL queries. Both endpoints are exposed from the dashboard.

Can I query with psql?+

Yes. QuestDB speaks Postgres wire protocol for queries, so psql and any PostgreSQL driver work.

Provisioning time?+

QuestDB takes a bit longer to provision than typical OLTP engines because of binary size; about 1 to 2 minutes the first time, fast on subsequent restarts.

Is there a free tier?+

QuestDB is a paid-tier engine on Cloud. The cost preview in the create flow shows the monthly burn before you provision; the Free plan covers Postgres, MySQL, Redis, and others for prototyping.

Can I run QuestDB locally?+

Yes. SpinDB and Layerbase Desktop both run QuestDB with the same one-command install.