Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The practical implication: your Prisma Postgres bill is determined by how many O

| Plan | Monthly base | Included operations | Overage rate | Included storage | Storage overage |
| --- | --- | --- | --- | --- | --- |
| Free | $0 | 100,000 | None | 500 MB | None |
| Free | $0 | 200,000 | None | 500 MB | None |
| Starter | $10 | 1,000,000 | $0.0080 / 1k ops | 10 GB | $2.00 / GB |
| Pro | $49 | 10,000,000 | $0.0020 / 1k ops | 50 GB | $1.50 / GB |
| Business | $129 | 50,000,000 | $0.0010 / 1k ops | 100 GB | $1.00 / GB |
Expand Down Expand Up @@ -95,7 +95,7 @@ History window = 0.5 GB × $0.20 = $0.10 (assumed retention)
Monthly cost ≈ $5.25
```

At this traffic level, Neon is cheaper because the operation count fits well under Prisma's Starter inclusion, but the $10 base fee on Starter isn't offset by usage. If you don't need the Starter base features and your traffic is this low, Neon's usage-based model wins on raw cost. If you're already on Prisma's free tier (100k operations), that covers this workload at $0.
At this traffic level, Neon is cheaper because the operation count fits well under Prisma's Starter inclusion, but the $10 base fee on Starter isn't offset by usage. If you don't need the Starter base features and your traffic is this low, Neon's usage-based model wins on raw cost. If you're already on Prisma's free tier (200k operations), that covers this workload at $0.

## Worked example 2: steady production API

Expand Down
8 changes: 4 additions & 4 deletions apps/blog/content/blog/serverless-postgres/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This guide leads with the comparison and a way to choose, then explains the reas

| | Bills for | Scale-to-zero | Cold start | Free tier | Paid entry |
|---|---|---|---|---|---|
| **Prisma Postgres** | Operations (queries) | No (stays ready) | None (by design; vendor claim) | 100k ops, 500 MB, 50 DBs | $10/mo (1M ops, 10 GB) |
| **Prisma Postgres** | Operations (queries) | No (stays ready) | None (by design; vendor claim) | 200k ops, 500 MB, 50 DBs | $10/mo (1M ops, 10 GB) |
| **Neon** | Compute-hours | After 5 min idle | A few hundred ms | 100 CU-hrs, 0.5 GB × 100 projects | Pay-as-you-go, $0.106/CU-hr |
| **Aurora Serverless v2** | Compute-seconds | Optional (0 ACU min) | ~15 s | None | Per ACU-second + storage |
| **Supabase** | Instance + usage | Free tier only | None on paid; restore on free | 2 projects, 500 MB | $25/mo |
Expand All @@ -34,7 +34,7 @@ Walk the tree, or read the guidance beneath it.

<ServerlessPostgresChooser />

- **Side project, prototype, or agent-generated app:** you want a generous free tier and zero setup. Prisma Postgres (100k operations, 50 databases, no card), Neon (100 CU-hours across 100 projects), or Supabase (2 projects, if week-idle pausing is acceptable).
- **Side project, prototype, or agent-generated app:** you want a generous free tier and zero setup. Prisma Postgres (200k operations, 50 databases, no card), Neon (100 CU-hours across 100 projects), or Supabase (2 projects, if week-idle pausing is acceptable).
- **Spiky or scheduled workloads (cron jobs, internal tools, dev/test fleets):** compute-time billing with scale-to-zero was built for this. Neon, or Aurora if you're already on AWS and can tolerate ~15-second resumes.
- **User-facing apps that go idle but have latency-sensitive users:** this is where cold starts hurt. Either keep the database always ready and pay per query (Prisma Postgres), disable auto-suspend on Neon, or run a small always-on instance on PlanetScale ($5) or paid Supabase ($25). The [cost comparison](#the-cost-crossover) below shows how to pick between them.
- **Steady, high-throughput production:** always-on dedicated capacity wins on price-per-query at sustained load. PlanetScale (from $5 single node, $50 Metal), or Aurora sized for the load.
Expand Down Expand Up @@ -87,7 +87,7 @@ Managed Postgres on unikernels in microVMs, designed so databases are always rea
- **Best for:** apps that want the bill to track query traffic, and fleets of many small databases.
- **Bills for:** operations, defined on the [pricing page](https://www.prisma.io/pricing) as "each time you interact with your database, no matter the compute time. We count the Prisma ORM queries you make, not the SQL statements you run." Check the pricing docs for how non-ORM queries count.
- **Idle behaviour:** no scale-to-zero and no cold starts; databases stay ready.
- **Free / entry:** 100,000 operations, 500 MB, and 50 databases, no card; paid from $10/mo (1M operations, 10 GB, then $0.008 per 1,000) to $129/mo (50M operations). Allowances are account-wide, not per database.
- **Free / entry:** 200,000 operations, 500 MB, and 50 databases, no card; paid from $10/mo (1M operations, 10 GB, then $0.008 per 1,000) to $129/mo (50M operations). Allowances are account-wide, not per database.
- **Watch out for:** no database branching yet (separate databases are the substitute); less operational track record than Aurora or Supabase; at sustained high query volume the per-operation math can exceed always-on billing (see the [cost comparison](#the-cost-crossover)).

### Neon
Expand Down Expand Up @@ -173,7 +173,7 @@ Serverless Postgres is PostgreSQL run by a platform that allocates compute on de
No. Cold starts only exist where compute suspends: Neon takes a few hundred milliseconds to activate from idle (its own docs' figure), and Aurora Serverless v2 takes about 15 seconds to resume from 0 ACUs. PlanetScale and paid Supabase avoid cold starts by never suspending, which you pay for as always-on instances, and Prisma Postgres states its unikernel architecture has no suspended state at all (a vendor claim, ours).
</Accordion>
<Accordion title="Which serverless Postgres is cheapest for a side project?">
For most side projects, a free tier covers it entirely: Prisma Postgres includes 100,000 operations, 500 MB and 50 databases per month with no credit card, and Neon includes 100 CU-hours and 0.5 GB per project across 100 projects. The first paid dollar differs by model: $5/month buys an always-on single node on PlanetScale, $10/month buys 1M operations on Prisma Postgres, and Neon bills pure usage with no minimum.
For most side projects, a free tier covers it entirely: Prisma Postgres includes 200,000 operations, 500 MB and 50 databases per month with no credit card, and Neon includes 100 CU-hours and 0.5 GB per project across 100 projects. The first paid dollar differs by model: $5/month buys an always-on single node on PlanetScale, $10/month buys 1M operations on Prisma Postgres, and Neon bills pure usage with no minimum.
</Accordion>
<Accordion title="Is Neon still maintained after the Databricks acquisition?">
Yes. Databricks agreed to acquire Neon on May 14, 2025 (reported at about $1 billion) and committed to continued investment in the platform; Neon's own docs describe it as continuing as a standalone serverless Postgres platform. As of July 2026, Neon operates under its own brand with active pricing and docs, positioned as complementary to Databricks Lakebase. Those are stated intentions rather than guarantees, which is worth weighing for long-horizon platform bets.
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/compute/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Yes. Use it to inspect projects, branches, services, deployments, integrations,

## Is Prisma Compute free?

You can run apps for free: the Free plan includes 1M requests a month with no usage billing. Paid plans include from 5M to 100M requests a month, then bill `$1 per million`; provisioned memory, active CPU, and outbound bandwidth are billed per use. See [Pricing](https://pris.ly/pricing-compute) for the rates, included usage by plan, worked examples, and what is not billed separately. For how those rates compare to Vercel's for the same workload, see [Prisma Compute vs Vercel pricing](https://www.prisma.io/blog/prisma-compute-vs-vercel-pricing?utm_source=docs).
You can run apps for free: each month, the Free plan includes 1M requests, 360 GB-hours of provisioned memory, 4 active vCPU-hours, and 10 GB of outbound bandwidth, with no usage billing. Paid plans include from 5M to 100M requests a month, then bill `$1 per million`; provisioned memory, active CPU, and outbound bandwidth are billed per use. See [Pricing](https://pris.ly/pricing-compute) for the rates, included usage by plan, worked examples, and what is not billed separately. For how those rates compare to Vercel's for the same workload, see [Prisma Compute vs Vercel pricing](https://www.prisma.io/blog/prisma-compute-vs-vercel-pricing?utm_source=docs).

## What does Public Beta mean for Compute?

Expand Down
16 changes: 8 additions & 8 deletions apps/docs/content/docs/compute/pricing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ Each meter measures a different resource: how often your app runs (requests), ho

## Included usage by plan

Requests are the one meter with an included monthly allowance. Provisioned memory, active CPU, and outbound bandwidth are billed per use on paid plans at the rates above; the Free plan has no usage billing.

| Plan | Monthly price | Requests included | Requests beyond that |
| -------- | ------------- | ----------------- | -------------------- |
| Free | `$0` | 1M | No usage billing |
| Starter | `$10` | 5M | `$1 per million` |
| Pro | `$49` | 20M | `$1 per million` |
| Business | `$129` | 100M | `$1 per million` |
The Free plan includes monthly limits for all four meters and has no usage billing. Paid plans include a monthly request allowance, then bill additional requests and the other three meters at the rates above.

| Plan | Monthly price | Requests included | Provisioned memory included | Active CPU included | Outbound bandwidth included | Requests beyond that |
| -------- | ------------- | ----------------- | ---------------------------- | ------------------- | --------------------------- | -------------------- |
| Free | `$0` | 1M | 360 GB-hours | 4 vCPU-hours | 10 GB | No usage billing |
| Starter | `$10` | 5M | Billed per use | Billed per use | Billed per use | `$1 per million` |
| Pro | `$49` | 20M | Billed per use | Billed per use | Billed per use | `$1 per million` |
| Business | `$129` | 100M | Billed per use | Billed per use | Billed per use | `$1 per million` |

See the [pricing page](https://www.prisma.io/pricing) for what each plan includes across Prisma Compute and Prisma Postgres.

Expand Down
8 changes: 4 additions & 4 deletions apps/site/src/app/llms-content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Title: Pricing — Prisma Compute & Prisma Postgres
Description: Usage-based pricing for the whole stack. Get started for free, choose the right Prisma Postgres plan for your workspace, and pay for Prisma Compute app hosting by use.

Pricing summary:
- Free plan: ${plans.free.price.USD}/month, ${computeIncludedRequests.free} Compute requests included, 100,000 operations included, 500 MB storage, 50 databases, no credit card required
- Free plan: ${plans.free.price.USD}/month, ${computeIncludedRequests.free} Compute requests, 360 GB-hours of provisioned memory, 4 active vCPU-hours, 10 GB of outbound bandwidth, 200,000 database operations, 500 MB storage, 50 databases, no credit card required
- Starter plan: ${plans.starter.price.USD}/month, ${computeIncludedRequests.starter} Compute requests included, 1,000,000 operations included, then $8 per million operations, 10 GB storage included, then $2 per GB, 1,000 databases, daily backups stored for 7 days
- Pro plan: ${plans.pro.price.USD}/month, ${computeIncludedRequests.pro} Compute requests included, 10,000,000 operations included, then $2 per million operations, 50 GB storage included, then $1.50 per GB, 1,000 databases, daily backups stored for 7 days
- Business plan: ${plans.business.price.USD}/month, ${computeIncludedRequests.business} Compute requests included, 50,000,000 operations included, then $1 per million operations, 100 GB storage included, then $1 per GB, 1,000 databases, daily backups stored for 30 days
Expand All @@ -218,9 +218,9 @@ Support and compliance summary:

Prisma Compute pricing (app hosting, included with every plan):
- Requests included per month: Free ${computeIncludedRequests.free}, Starter ${computeIncludedRequests.starter}, Pro ${computeIncludedRequests.pro}, Business ${computeIncludedRequests.business}; then $1 per million on paid plans (the Free plan has no usage billing)
- Provisioned memory: $0.006 per GB-hour, billed per use on paid plans
- Active CPU: $0.064 per vCPU-hour, billed per use on paid plans
- Outbound bandwidth: $0.025 per GB, billed per use on paid plans
- Provisioned memory: Free includes 360 GB-hours per month; paid plans bill $0.006 per GB-hour
- Active CPU: Free includes 4 vCPU-hours per month; paid plans bill $0.064 per vCPU-hour
- Outbound bandwidth: Free includes 10 GB per month; paid plans bill $0.025 per GB
- Idle apps scale to zero and cost nothing; deploys, preview branches, and seats are not billed

## Enterprise
Expand Down
2 changes: 1 addition & 1 deletion apps/site/src/components/sections/pricing-faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const PRICING_FAQS: FaqItem[] = [
{
question: "Are there egress fees?",
answer:
"Not for your database — unlimited data transfer is included with Prisma Postgres on all plans. Apps hosted on Prisma Compute pay for outbound bandwidth at $0.025 per GB, as part of Compute's usage-based pricing.",
"Not for your database — unlimited data transfer is included with Prisma Postgres on all plans. Prisma Compute includes 10 GB of outbound bandwidth per month on Free. Paid plans bill outbound bandwidth at $0.025 per GB.",
},
{
question: "Can I change plans later?",
Expand Down
13 changes: 9 additions & 4 deletions apps/site/src/components/sections/pricing-plans.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import { cn } from "@/lib/utils";
//
// `compute` is each plan's Prisma Compute pricing — Compute GA (Shane,
// 2026-08-24). The numbers are LOCKED IN, hand-entered by Shane: requests
// are the only meter with an included allowance (Free 1M with no usage
// billing, then 5M/20M/100M plus $1 per million on the paid tiers); memory,
// CPU, and bandwidth are billed per use on paid plans. These cards are the
// include 1M requests, 360 GB-hours of memory, 4 vCPU-hours, and 10 GB of
// outbound bandwidth on Free with no usage billing. Paid tiers include
// 5M/20M/100M requests, then bill every meter by use. These cards are the
// page's source of truth — keep the Prisma Compute group in
// pricing-spec-table.tsx, pricing-data.ts, and the llms surfaces in sync
// with them.
Expand All @@ -30,7 +30,12 @@ const PLANS = [
name: "Free",
price: "$0",
note: "Free forever. No credit card required.",
compute: ["1M requests / month"],
compute: [
"1M requests / month",
"360 GB-hours memory / month",
"4 active vCPU-hours / month",
"10 GB outbound bandwidth / month",
],
postgres: ["200k operations / month", "500 MB storage", "50 databases"],
platform: [],
blurb:
Expand Down
Loading
Loading