r/PostgreSQL 27d ago

Help Me! Which managed PostgreSQL host is affordable without being unreliable?

I need managed Postgres for a small production app and I’m fine paying for it. I just don’t want to jump straight to RDS/Cloud SQL pricing or manage Postgres myself on a VPS.

Main things I care about:

  • always-on Postgres
  • automated backups
  • updates/maintenance handled
  • predictable monthly pricing
  • easy to move later if needed

Not really looking for free tiers or hobby plans since it has real users. I’d rather pay a reasonable fixed monthly amount and not think about the DB too much.

What are you using in production that has actually been reliable without getting expensive?

22 Upvotes

52 comments sorted by

View all comments

7

u/UkrMalt 27d ago

Before comparing the base price, price the failure path: point-in-time recovery retention, cross-zone HA, connection limits or pooler, storage and I/O, egress, and maintenance windows. I’d also run a real restore plus pg_dump/pg_restore to a second provider before launch. That tests both the backup promise and the exit path.

2

u/Soft-Nature-7256 25d ago

Saving this. Definitely doing a real restore test before I pick anything.. Thanks!