Dedicated PostgreSQL on NVMe with tuned pgvector — semantic search, table editor, and AI-assisted SQL editor built in. Fixed pricing from $15/month, migration help included.
Free tier · No credit card · pgvector ready in 60 seconds
Vector workloads don't fit neatly into general-purpose Postgres pricing. Most teams we talk to are losing money, losing sleep, or both.
Compute add-ons, storage, egress, and vector index memory keep adding up. The pgvector workload you run for one feature is now your biggest Supabase line item.
Serverless Postgres is elegant until the first query of the day takes 2 seconds. Usage-based pricing feels cheap until it isn't.
You're paying for a dedicated vector database while your app data lives in Postgres. One more service, one more bill, one more copy of the data to keep in sync.
You chose a VPS to save money. Now you maintain Patroni, backups, PITR, upgrades, and HNSW tuning at 2am instead of shipping.
Send us your row counts, dimensions, QPS targets, and what's hurting today — you'll get a plan back, usually within 48 hours.
Same dedicated compute. None of the platform bloat.
| Rivestack | Supabase | Neon | |
|---|---|---|---|
| Monthly cost | $15 | ~$105 | ~$69+ |
| Compute | 2 vCPU · 4 GB | Shared · 1 GB* | Serverless |
| Storage | NVMe | gp3 SSD | Cloud SSD |
| pgvector | Tuned (HNSW) | Extension only | Extension only |
| Backups | Daily + 14d PITR | Daily | Yes |
| Vector perf | ~1,000 QPS · 3.7ms p50 | Shared SSD | Serverless |
| Terraform | ✓ | ✓ | ✗ |
Supabase and Neon are excellent platforms with broader feature sets — auth, storage, edge functions, realtime. If you need those, use them. If you just need fast Postgres with pgvector, that's all we do.
pgvector + HNSW on your own dedicated NVMe Postgres. No second database to run or sync.
In-DB query time measured with pgvector-bench — not end-to-end latency. Full methodology →
It's just PostgreSQL. Use your existing driver.
import psycopg2
conn = psycopg2.connect("postgresql://appuser@db-7q9m2p.eu.rivestack.io/primary")
cur = conn.cursor()
# pgvector is already enabled — just create your table
cur.execute("""CREATE TABLE docs (
id BIGSERIAL PRIMARY KEY,
text TEXT NOT NULL,
emb vector(1536)
)""")
# Insert a document with its embedding
cur.execute(
"INSERT INTO docs (text, emb) VALUES (%s, %s::vector)",
("deploy LLMs in production", embedding)
)
# Nearest-neighbor search in < 4ms
cur.execute(
"SELECT text, emb <=> %s::vector AS dist FROM docs ORDER BY dist LIMIT 5",
(query_embedding,)
)
for text, dist in cur.fetchall():
print(f"{dist:.4f} {text}")Go, Node.js, Java, Rust, Ruby, .NET — full snippets in our docs.
Work with your data straight from the dashboard — and it stays fast on big tables.
Manage Rivestack like the rest of your infra. Create, scale, and destroy clusters with one file and one command — no clicking through dashboards.
Built in France · Infrastructure in EU, US-East and Singapore
“RiveStack does care about you, no matter if you are on a paid or free plan…the guys do their best to make you happy, and your project succeed. Their support is as lightning fast as their database.”
“RiveStack is lightning fast, Postgres is online in seconds with pgvector ready for AI. The SQL tooling is solid and the AI query helper nails prompts…truly production-ready”
“delivers impressively fast provisioning, databases are prd/dev ready to connect, saving me setup time. SQL tooling is solid, and the AI-assisted query generation responded accurately to my prompts.”
One price per node. No per-query billing, no egress surcharges, no vector-count overage. The bill on day 30 is the same as the quote on day 1.
Prices shown are EU Central, our lowest region. US-East and Singapore are priced higher — see full pricing.
Migrating from another provider? Get a free workload review →
What buyers actually ask before moving a pgvector workload.
For pgvector-heavy workloads on dedicated compute, yes — almost always. A 2 vCPU / 4 GB Supabase compute add-on runs ~$105/month. The equivalent dedicated VM on Rivestack is $15/month (Solo), on NVMe instead of gp3. Send us your current plan and row counts and we'll give you a realistic number, not a marketing one. If Rivestack is not cheaper for your workload, we'll say so.
Rivestack runs dedicated Postgres on always-on NVMe nodes. No scale-to-zero, no cold starts, no cache warm-up before your first query of the day.
It's a real migration. pgvector with HNSW, tuned correctly on NVMe, handles the vast majority of Pinecone workloads at a fraction of the cost — and you get SQL joins, filters, and transactions in the same database as your app data. Not sure it fits? Send us your workload shape (rows, dimensions, QPS, filters) for a free review.
It's standard PostgreSQL, so yes. For most databases, a pg_dump / pg_restore takes minutes. For larger or always-on workloads, we help with logical replication cutover. Migration help is included in the workload review.
Rivestack is a French company and our EU region runs entirely within the European Union. Your data never leaves EU territory unless you explicitly choose our US-East region. DPAs are available on request.
Fixed monthly per node. You pick the plan, you know the bill. Need more capacity? You resize the node — you don't open an invoice and find a 4× spike.