Amazon RDS vs Supabase
SEPT 2026 auditA comparison of Amazon RDS and Supabase built from values read directly from each provider's own documentation, with the source recorded against every figure.
The short answer
Choose Amazon RDS if…
Teams already inside AWS, where the database sitting in the same VPC as everything else is worth more than any single feature on this page. Six engines, up to 35 days of point-in-time recovery, and read replicas you create and delete yourself.
Editorial · Palash Bagchi · approved
Choose Supabase if…
Teams who want Postgres plus auth, storage and generated APIs from one vendor on a fixed monthly bill, and who would otherwise assemble those pieces themselves.
Editorial · Palash Bagchi · approved
Consider something else if…
- Amazon RDS: You want a database per pull request. RDS documents no branching, and replicas are manual — AWS states outright that it does not autoscale them.
- Supabase: You want only a database. Much of the $25 covers a platform you may not use, and free projects are paused after a week of inactivity, which is not the same as scaling to zero.
8 sourced criteria separate them — see where, with sources, below.
Pick the criteria you care about. The chart counts how many of them lean toward each provider — the same read as scanning the bars below, just totalled for the ones you chose.
Amazon RDS 0
Supabase 0
At a glance.
| Criterion | Amazon RDS | Supabase |
|---|---|---|
| Execution | ||
| Managed connection pooling | Supported | Supported |
| Data | ||
| Engine | PostgreSQL, alongside MySQL, MariaDB, Oracle, SQL Server and Db2. Each engine is a separate RDS product with its own version list and its own feature support, so a capability documented for one is not a capability of RDS as a whole. | PostgreSQL |
| Connection limit | Not a fixed number: RDS for PostgreSQL sets max_connections by formula from the instance's memory — LEAST({DBInstanceClassMemory/9531392}, 5000) — so a bigger instance class gets more connections and the ceiling is 5,000 however large it is. The parameter can be set by hand anywhere from 6 to 262,143, which is a limit on what you may configure rather than what an instance will serve. Other engines use different divisors: MySQL is memory/12582880 with no cap. | 60 direct and 200 pooled connections on the Micro instance included with Pro; both scale with instance size |
| Point-in-time recovery | Any point inside the configured backup retention period, so up to 35 days. Transaction logs are uploaded to S3 every five minutes, which is what bounds how close to now the latest restorable time can be. | Point-in-time recovery is a paid add-on on Pro, Team and Enterprise, and needs at least a Small compute add-on alongside it. Worst-case recovery point is 2 minutes. Without it, restores go back only to a daily backup. |
| Read replicas | Supported — 15 per primary, raisable on request | Supported |
| Backup retention | Between 0 and 35 days, set per DB instance; 0 disables automated backups entirely. The default depends on how the instance was created — one day via the API or CLI, seven days via the console — so there is no single default to quote. Multi-AZ DB clusters cannot be set below 1 day. | Daily backups: 7 days on Pro, 14 days on Team, up to 30 days on Enterprise. Free projects get no automatic backups at all — Supabase tells free users to export their own data with the CLI. |
| Compliance | ||
| SOC 2 | Listed as SOC-compliant on AWS's own compliance scope page. | SOC 2 Type 2 compliant; report available to Enterprise and Team customers via the dashboard. |
| ISO 27001 | Covered under AWS's account-wide ISO/IEC 27001:2022 certification — not scoped per-service the way SOC, HIPAA and PCI DSS are on AWS's own site. | ISO 27001 certified; certificate available to Enterprise and Team customers via the dashboard. |
| HIPAA | Listed as a HIPAA-eligible service on AWS's own reference page. | HIPAA compliant; customers may store PHI after signing a BAA and meeting shared-responsibility obligations. |
| GDPR / data residency | AWS customers can process personal data on all AWS services in compliance with GDPR, and choose the storage type and geographic region for their data. | Projects hosted in EU regions keep primary database data in-region; a DPA is available. |
Where they differ.
Engine
- Amazon RDS
- PostgreSQL, alongside MySQL, MariaDB, Oracle, SQL Server and Db2. Each engine is a separate RDS product with its own version list and its own feature support, so a capability documented for one is not a capability of RDS as a whole.
- Supabase
- PostgreSQL
Sources (2) →Sources ↓
- Amazon RDS for PostgreSQL — Amazon Relational Database Service User Guide ↗
“Amazon RDS supports DB instances running several versions of PostgreSQL. [...] DB instances running PostgreSQL support Multi-AZ deployments, read replicas, Provisioned IOPS, and can be created inside a virtual private cloud (VPC).”
Read 2026-09-09 · official docs
- Connect to your database — Supabase Docs ↗
“The session mode connection string connects to your Postgres instance via the Shared Pooler (Supavisor).”
Read 2026-09-05 · official docs
Connection limit
- Amazon RDS
- Not a fixed number: RDS for PostgreSQL sets max_connections by formula from the instance's memory — LEAST({DBInstanceClassMemory/9531392}, 5000) — so a bigger instance class gets more connections and the ceiling is 5,000 however large it is. The parameter can be set by hand anywhere from 6 to 262,143, which is a limit on what you may configure rather than what an instance will serve. Other engines use different divisors: MySQL is memory/12582880 with no cap.
- Supabase
- 60 direct and 200 pooled connections on the Micro instance included with Pro; both scale with instance size
Sources (2) →Sources ↓
- Quotas and constraints for Amazon RDS — Amazon Relational Database Service User Guide ↗
“PostgreSQL max_connections 6–262143 LEAST({DBInstanceClassMemory/9531392}, 5000) Maximum number of concurrent connections [...] DBInstanceClassMemory is in bytes.”
Read 2026-09-09 · official docs
- Pricing & Fees — Supabase ↗
“1 GB RAM / 2-core ARM CPU / Connections: Direct 60, Pooler 200”
Read 2026-09-05 · official pricing
Point-in-time recovery
- Amazon RDS
- Any point inside the configured backup retention period, so up to 35 days. Transaction logs are uploaded to S3 every five minutes, which is what bounds how close to now the latest restorable time can be.
- Supabase
- Point-in-time recovery is a paid add-on on Pro, Team and Enterprise, and needs at least a Small compute add-on alongside it. Worst-case recovery point is 2 minutes. Without it, restores go back only to a daily backup.
Sources (2) →Sources ↓
- Restoring a DB instance to a specified time for Amazon RDS — Amazon Relational Database Service User Guide ↗
“RDS uploads transaction logs for DB instances to Amazon S3 every five minutes. To see the latest restorable time for a DB instance, use the AWS CLI describe-db-instances command and look at the value returned in the LatestRestorableTime field for the DB instance. [...] You can restore to any point in time within your backup retention period.”
Read 2026-09-09 · official docs
- Database Backups — Supabase Docs ↗
“Point-in-Time Recovery (PITR) allows you to back up a project at shorter intervals, giving you the option to restore to any chosen point with up to seconds of granularity. [...] Pro, Team and Enterprise Plan projects can enable PITR as an add-on. Projects that want to use PITR must also use at least a Small compute add-on to ensure smooth functioning. [...] in the worst case scenario, PITR achieves a Recovery Point Objective (RPO) of two minutes.”
Read 2026-09-05 · official docs
Backup retention
- Amazon RDS
- Between 0 and 35 days, set per DB instance; 0 disables automated backups entirely. The default depends on how the instance was created — one day via the API or CLI, seven days via the console — so there is no single default to quote. Multi-AZ DB clusters cannot be set below 1 day.
- Supabase
- Daily backups: 7 days on Pro, 14 days on Team, up to 30 days on Enterprise. Free projects get no automatic backups at all — Supabase tells free users to export their own data with the CLI.
Sources (2) →Sources ↓
- Backup retention period — Amazon Relational Database Service User Guide ↗
“If you create a DB instance using the Amazon RDS API or the AWS CLI and if you don't set the backup retention period, the default backup retention period is one day. If you create a DB instance using the console, the default backup retention period is seven days. [...] You can set the backup retention period of a DB instance to between 0 and 35 days. Setting the backup retention period to 0 disables automated backups. For a Multi-AZ DB cluster, you can set the backup retention period to between 1 and 35 days.”
Read 2026-09-09 · official docs
- Database Backups — Supabase Docs ↗
“We automatically back up all Pro, Team, and Enterprise Plan projects on a daily basis. [...] Pro Plan projects can access the last 7 days of daily backups. Team Plan projects can access the last 14 days of daily backups, while Enterprise Plan projects can access up to 30 days of daily backups. [...] We recommend that free tier plan projects regularly export their data using the Supabase CLI db dump command and maintain off-site backups.”
Read 2026-09-05 · official docs
SOC 2
- Amazon RDS
- Listed as SOC-compliant on AWS's own compliance scope page.
- Supabase
- SOC 2 Type 2 compliant; report available to Enterprise and Team customers via the dashboard.
Sources (2) →Sources ↓
- AWS Services in Scope for SOC ↗
“Amazon Relational Database Service (RDS) listed with a checkmark on the SOC services-in-scope page.”
Read 2026-09-12 · official site
- Supabase Security ↗
“Supabase is SOC 2 Type 2 compliant.”
Read 2026-09-12 · official site
ISO 27001
- Amazon RDS
- Covered under AWS's account-wide ISO/IEC 27001:2022 certification — not scoped per-service the way SOC, HIPAA and PCI DSS are on AWS's own site.
- Supabase
- ISO 27001 certified; certificate available to Enterprise and Team customers via the dashboard.
Sources (2) →Sources ↓
- ISO/IEC 27001:2022 Compliance — AWS ↗
“AWS has certification for compliance with ISO/IEC 27001:2022, 27017:2015, and 27018:2019. These certifications are performed by independent third-party auditors.”
Read 2026-09-12 · official site
- Supabase Security ↗
“Supabase is ISO 27001 certified.”
Read 2026-09-12 · official site
HIPAA
- Amazon RDS
- Listed as a HIPAA-eligible service on AWS's own reference page.
- Supabase
- HIPAA compliant; customers may store PHI after signing a BAA and meeting shared-responsibility obligations.
Sources (2) →Sources ↓
- AWS HIPAA Eligible Services Reference ↗
“Amazon Relational Database Service (RDS) listed on the HIPAA-eligible services reference page.”
Read 2026-09-12 · official site
- Supabase Security ↗
“Supabase is HIPAA compliant.”
Read 2026-09-12 · official site
GDPR / data residency
- Amazon RDS
- AWS customers can process personal data on all AWS services in compliance with GDPR, and choose the storage type and geographic region for their data.
- Supabase
- Projects hosted in EU regions keep primary database data in-region; a DPA is available.
Sources (2) →Sources ↓
- GDPR — Amazon Web Services ↗
“AWS customers can use all AWS services to process personal data [...] in compliance with the GDPR. [...] Customers have control of their customer data. With AWS, customers can: Determine where their customer data will be stored, including the type of storage and geographic region of that storage.”
Read 2026-09-12 · official site
- Supabase Security ↗
“Projects hosted in EU regions keep your primary database data in-region.”
Read 2026-09-12 · official site
When these numbers change, hear about it. Sources are re-checked monthly; a repricing goes out as a short note.
Documented by only one.
These criteria are published by one provider and not the other. An absence here means we have not found a source, not that the feature is missing.
Questions this comparison answers.
Should I choose Amazon RDS or Supabase?
Pick Amazon RDS if Teams already inside AWS, where the database sitting in the same VPC as everything else is worth more than any single feature on this page. Six engines, up to 35 days of point-in-time recovery, and read replicas you create and delete yourself.
Pick Supabase if Teams who want Postgres plus auth, storage and generated APIs from one vendor on a fixed monthly bill, and who would otherwise assemble those pieces themselves.
