PostgreSQL
PostgreSQL is a fully open-source relational database known for standards compliance, extensibility, and rock-solid transactional integrity. Extensions add JSON, geospatial, full-text, and vector search to the core engine.
Pros
- Battle-tested ACID. Decades of production use with strict transactional correctness. 0
- Powerful extensions. PostGIS, pgvector, and full-text search live inside the database. 0
- Rich SQL support. Window functions, CTEs, and JSON operators handle complex queries. 0
- Truly free. Permissive license with no owning vendor or paid tiers. 0
- Managed everywhere. Every major cloud offers a hosted PostgreSQL service. 0
Cons
- Vertical-first scaling. Write scaling beyond one primary requires manual sharding. 0
- Connection cost. Each connection is a process, so serverless apps need pooling. 0
- Vacuum maintenance. Autovacuum needs tuning on write-heavy tables to avoid bloat. 0
- Replication complexity. Failover and high availability demand external tooling. 0