You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/250-postgres/100-introduction/250-overview.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ Spend limits are available on the Pro plan and higher. Please note that the spen
35
35
36
36
### Restarting your database when changing your subscription
37
37
38
-
When changing your subscription from Starter to Pro/Business or from Pro/Business to Start, your database instance is being restarted. This may cause a downtime of ~1second.
38
+
When changing your subscription from Free to Starter/Pro/Business or from Starter/Pro/Business to Free, your database instance is being restarted. This may cause a downtime of ~1second.
39
39
40
40
:::note
41
41
This is temporary. In the future, there won't be any downtime when up- or downgrading a plan.
@@ -176,23 +176,26 @@ You can use your own MAU count, activity level, and storage used to project cost
176
176
177
177
:::
178
178
179
-
We will associate each workload with a plan and its corresponding pricing details, for example, the **Starter plan** for the small workload, the **Pro plan** for the medium workload, and the **Business Annual plan** for the large workload. Then we will apply the equations to the example workloads to generate a rough estimate of a monthly bill. For example:
179
+
We will associate each workload with a paid plan and its corresponding pricing details, for example, the **Starter plan** for the small workload, the **Pro plan** for the medium workload, and the **Business plan** for the large workload. Then we will apply the equations to the example workloads to generate a rough estimate of a monthly bill. For example:
180
180
181
181
:::note[Pricing details]
182
182
183
183
Here are the details for each pricing plan:
184
184
185
-
-**Starter plan** - \$18 per million operations
186
-
- Base plan fee - \$0 per month
187
-
- Storage - 1 GB free then \$2 per additional GB
188
-
-**Pro plan** - \$8 per million operations
185
+
-**Starter plan** - \$8 per million operations
186
+
- Base plan fee - \$10 per month
187
+
- Included operations - 1,000,000
188
+
- Storage - 10 GB free then \$2 per additional GB
189
+
-**Pro plan** - \$2 per million operations
189
190
- Base plan fee - \$49.00 per month
190
-
- Storage - 5 GB free then \$1.5 per additional GB
191
-
-**Business Annual plan** - \$4 per million operations in the 50-100M/month usage bracket
191
+
- Included operations - 10,000,000
192
+
- Storage - 50 GB free then \$1.5 per additional GB
193
+
-**Business plan** - \$1 per million operations
192
194
- Base plan fee - \$129.00 per month
193
-
- Storage - 10 GB free then \$1 per additional GB
195
+
- Included operations - 50,000,000
196
+
- Storage - 100 GB free then \$1 per additional GB
194
197
195
-
You can also learn more about the pricing details for each plan on the [pricing page](https://www.prisma.io/pricing?utm_source=docs).
198
+
We also have a Free plan, but we are leaving it out in the following calculations because it's intended for evaluation only and is not meant for production workloads. You can also learn more about the pricing details for each plan on the [pricing page](https://www.prisma.io/pricing?utm_source=docs).
196
199
197
200
:::
198
201
@@ -201,36 +204,36 @@ You can also learn more about the pricing details for each plan on the [pricing
201
204
A hobby or early-stage side-project with ~`500` MAUs. Each user performs ~`10` actions per day, and the entire database uses ~`0.5` GB of storage. Based on the assumptions, you would calculate the monthly bill using the following equations:
202
205
203
206
-`total_ops` = `500` x `10` x `30` = `150000`
204
-
-`billable_ops` = `50000`
205
-
-`ops_cost` = (`50000` ÷ `1000000`) x $`18` = $`0.90`
206
-
-`storage_cost` = $`0` (0.5 GB is below the 1 GB free tier)
207
-
-`base_plan_fee` = $`0`
207
+
-`billable_ops` = `0` (150,000 operations is below the 1 million free operations)
208
+
-`ops_cost` = $`0`
209
+
-`storage_cost` = $`0` (0.5 GB is below the 10 GB storage already included)
210
+
-`base_plan_fee` = $`10`
208
211
209
-
`total_monthly_cost` = $`0.90` per month
212
+
`total_monthly_cost` = $`10.00` per month
210
213
211
214
**Example of a medium workload on the Pro plan**:
212
215
213
216
A growing SaaS product serving ~`5000` MAUs. Power users average ~`40` actions per day, and the app stores ~`6` GB of data. Based on the assumptions, you would calculate the monthly bill using the following equations:
**Example of a large workload on the Business Annual plan**:
226
+
**Example of a large workload on the Business plan**:
224
227
225
228
A production-grade, consumer-facing application handling ~`50000` MAUs. Heavy usage with ~`60` actions per user per day drives significant traffic, and the dataset reaches ~`40` GB. Based on the assumptions, you would calculate the monthly bill using the following equations:
Copy file name to clipboardExpand all lines: content/250-postgres/300-database/400-connection-pooling.mdx
+15-13Lines changed: 15 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ Currently, Prisma Postgres allows a maximum of 10 concurrent database connection
25
25
26
26
If you're using **your own database** with Prisma Accelerate, the connection limits differ:
27
27
28
+
-**Free plan**: Maximum of `10` connections.
28
29
-**Starter plan**: Maximum of `10` connections. This is often sufficient for most workloads, but if you're expecting high traffic or intensive compute operations, you may want to [increase this limit](#configuring-the-connection-pool-size).
29
30
-**Pro plan**: Supports up to `100` concurrent connections.
30
31
-**Business plan**: Supports up to `1000` concurrent connections.
@@ -68,9 +69,9 @@ You can configure the minimum and maximum query response size, query duration, a
68
69
69
70
Prisma Postgres has a default global timeout of `10s` for each query, configurable using the slider labeled **Query duration**, based on your subscription plan:
| Query timeout | Up to `10` seconds| Up to `10` seconds | Up to `20` seconds | Up to `60` seconds |
74
75
75
76
See the [error reference](/postgres/database/error-reference#p6004-querytimeout) and our [pricing page](https://www.prisma.io/pricing) for more information.
76
77
@@ -83,9 +84,9 @@ While you can increase the query timeout, it's recommended to inspect and optimi
83
84
84
85
Prisma Postgres has a default global timeout of `15s` for each [interactive transaction](/orm/prisma-client/queries/transactions#interactive-transactions), configurable using the slider labeled **Transaction duration**, based on your subscription plan:
| Interactive transaction limit | Up to `15` seconds | Up to `15` seconds | Up to `30` seconds | Up to `90` seconds |
89
90
90
91
See the [error reference](/postgres/database/error-reference#p6004-querytimeout) and our [pricing page](https://www.prisma.io/pricing#accelerate) for more information.
91
92
@@ -112,9 +113,9 @@ While you can increase the interactive transaction timeout limit, it's recommend
112
113
113
114
Prisma Postgres has a default global response size limit of `5MB`, configurable using the slider labeled **Response size**, based on your subscription plan:
| Query size | Up to `5MB`| Up to `5MB`| Up to `10MB`| Up to `20MB`|
118
119
119
120
See the [error reference](/postgres/database/error-reference#p6009-responsesizelimitexceeded) and our [pricing page](https://www.prisma.io/pricing#accelerate) for more information.
120
121
@@ -143,13 +144,14 @@ This distributed model allows your application to handle increased traffic by sp
143
144
144
145
### Enabling Autoscaling
145
146
146
-
Autoscaling is automatically enabled **when your Accelerate connection limit is set above the default (10)**. This feature is **not available on the Starter plan**.
147
+
Autoscaling is automatically enabled **when your Accelerate connection limit is set above the default (10)**. This feature is **not available on the Free or Starter plan**.
147
148
148
149
Your environment's maximum connection limit is based on your [Prisma Data Platform plan](https://www.prisma.io/pricing):
Support for [more extensions](#other-extensions-are-coming-soon) will follow soon. If there are specific extensions you'd like to see in Prisma Postgres, [fill out this form](https://pris.ly/i-want-extensions).
17
23
@@ -161,7 +167,6 @@ Support for the following extensions is going to come soon:
Copy file name to clipboardExpand all lines: content/500-platform/10-about.mdx
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,13 +110,11 @@ The **Database** tab in the left panel of a project environment lets you configu
110
110
111
111
## Billing
112
112
113
-
The [subscription plan](https://www.prisma.io/pricing?utm_source=docs&utm_medium=platform-docs) you select in your workspace determines how many projects and environments you can create in that workspace:
113
+
The [subscription plan](https://www.prisma.io/pricing?utm_source=docs&utm_medium=platform-docs) you select in your workspace determines how many databases you can create in that workspace:
0 commit comments