diff --git a/products/managed-postgres/navigation.json b/products/managed-postgres/navigation.json
index d9dd09d2..038cd787 100644
--- a/products/managed-postgres/navigation.json
+++ b/products/managed-postgres/navigation.json
@@ -6,7 +6,8 @@
"group": "Get started",
"pages": [
"products/managed-postgres/overview",
- "products/managed-postgres/quickstart"
+ "products/managed-postgres/quickstart",
+ "products/managed-postgres/pricing"
]
},
{
diff --git a/products/managed-postgres/pricing.mdx b/products/managed-postgres/pricing.mdx
index 33fa4eb4..b67b8880 100644
--- a/products/managed-postgres/pricing.mdx
+++ b/products/managed-postgres/pricing.mdx
@@ -9,7 +9,7 @@ doc_type: 'reference'
import BetaBadge from "/snippets/components/BetaBadge/BetaBadge.jsx";
-
+
Postgres managed by ClickHouse is built on local NVMe storage, which allows it to offer production-grade performance and native ClickHouse integration without the pricing overhead of traditional network-attached storage architectures. This page covers the pricing model, available instance types, and tier comparison for the service.
@@ -41,55 +41,51 @@ Pricing, features, and resource limits vary by organization tier — [Basic, Sca
The table below summarizes the features, capabilities, and limits included in each tier. To compare pricing across tiers, refer to the [pricing calculator](https://clickhouse.com/pricing?service=postgres#pricing-calculator).
-
-
-
Basic
-
Great for testing out new ideas or starter projects. Limited storage and memory.
-
-
-
-
Scale
-
For working with production environments, data at scale, or professional use cases.
-
Everything in Basic, plus
-
-
-
-
Enterprise
-
For working with production environments, very large data at scale, or enterprise use cases.
-
Everything in Scale, plus
-
-
-
+
+
+ Great for testing out new ideas or starter projects. Limited storage and memory.
+
+ - [Up to 8 GB RAM for compute](/products/managed-postgres/scaling)
+ - [Up to 118 GB local NVMe storage](/products/managed-postgres/scaling)
+ - [Backups with retention of 1 day](/products/managed-postgres/backup-and-restore)
+ - [PITR and Branches](/products/managed-postgres/backup-and-restore)
+ - Includes [High Availability](/products/managed-postgres/high-availability)
+ - [Query Insights](/products/managed-postgres/monitoring/query-insights) with 1 day retention
+ - [90+ Postgres extensions](/products/managed-postgres/extensions)
+ - [Native CDC to ClickHouse](/products/managed-postgres/clickhouse-integration)
+ - [`pg_clickhouse` extension](/products/managed-postgres/extensions)
+ - [Fully managed data-migration](/products/managed-postgres/migrations/clickhouse-cloud)
+ - Expert support with 1 business day response time
+ - [Single sign-on authentication (SSO)](/products/cloud/guides/security/cloud-access-management/manage-my-account) using Google or Microsoft Social login
+ - [Multi-factor authentication](/products/cloud/guides/security/cloud-access-management/manage-my-account#mfa)
+
+
+ For working with production environments, data at scale, or professional use cases.
+
+ **Everything in Basic, plus**
+
+ - [Up to 60 TB storage](/products/managed-postgres/scaling)
+ - [Up to 96 vCPUs and 768 GB RAM](/products/managed-postgres/scaling)
+ - [Storage autoscale](/products/managed-postgres/scaling)
+ - [Read replicas](/products/managed-postgres/read-replicas)
+ - [Private networking](/products/managed-postgres/security)
+ - [Backups with retention of 7 days](/products/managed-postgres/backup-and-restore)
+ - [Query Insights](/products/managed-postgres/monitoring/query-insights) with 7 day retention
+ - Expert support with 1 hour response time 24x7 for Severity 1 issues
+
+
+ For working with production environments, very large data at scale, or enterprise use cases.
+
+ **Everything in Scale, plus**
+
+ - Enterprise support with 30 min response time for Severity 1 issues
+ - [Private regions](/products/cloud/guides/infrastructure/deployment-options/clickhouse-private)
+ - Named Lead Support Engineer
+ - [Custom extensions](/products/managed-postgres/extensions) (*pending approval)
+ - [Consultative migrations guides](/products/managed-postgres/migrations/clickhouse-cloud)
+ - [Scheduled upgrades](/products/managed-postgres/upgrades)
+
+
### Instance types {#instance-types}
@@ -129,5 +125,4 @@ As the product evolves during Beta, pricing and packaging may be refined ahead o
- Additional backup charges may apply at GA for retention periods beyond a limit that is still being defined.
- We expect Native CDC via ClickPipes to remain free or minimally priced at GA when Postgres and ClickHouse are colocated in the same region, aligning with the vision of a unified OLTP + OLAP platform.
- Scaling, failover, and standby provisioning briefly run two instances in parallel to keep your database online — you may see overlapping charges for both instances while the transition completes. The duration of this window varies based on instance type and storage volume.
-- When your selected instance type is temporarily unavailable in the chosen region, we may provision a comparable instance type to keep your database online. You will be billed at the rate of the provisioned instance.
- Existing pricing may evolve and be subject to change closer to GA as we learn more about real-world customer usage patterns, workload characteristics, and infrastructure requirements during the Beta period.
diff --git a/snippets/components/BetaBadge/BetaBadge.jsx b/snippets/components/BetaBadge/BetaBadge.jsx
index 71544f6f..6127f085 100644
--- a/snippets/components/BetaBadge/BetaBadge.jsx
+++ b/snippets/components/BetaBadge/BetaBadge.jsx
@@ -1,19 +1,17 @@
-import { galaxyOnClick } from '/snippets/lib/galaxy.jsx';
+import { galaxyOnClick } from "/snippets/lib/galaxy.jsx";
-const Icon = () => {
- return (
-
- )
-}
+const Icon = () => (
+
+);
-export const BetaBadge = ({ link, galaxyTrack, galaxyEvent }) => {
+export const BetaBadge = ({ link, galaxyTrack, galaxyEvent } = {}) => {
if (link) {
return (
{
Beta
- )
+ );
}
return (
@@ -41,5 +39,5 @@ export const BetaBadge = ({ link, galaxyTrack, galaxyEvent }) => {
- )
-}
+ );
+};