Why is Postgres growing so fast?
db-engines.com
Why is Postgres growing so fast?
1–9 of 9 posts
Re: Why is Postgres growing so fast?
#2What is causing this comparative surge in popularity?
Re: Why is Postgres growing so fast?
#3Re: Why is Postgres growing so fast?
#4Out of the top 5 databases, Postgres is the only on that had significant growth the previous year - +36 points. What is causing this comparative surge in popularity?
* When the pendulum has swung back from NoSQL, MySQL was in a weird place due to Oracle.
* OSS project and foundation not dominated by any particular company means that startups are willing to bet on it. In turn, these startups bring more tools, extensions, and attention to Postgres.
* The open wire protocol, with multiple existing implementations, means that if your application depends on Postgres, you will have plenty of options going forward.
* The extension ecosystem is working because extensions can do almost anything (create types, indexes, functions, etc.). And now pgrx and pgzx open up to writing extensions in Rust and Zig.
Re: Why is Postgres growing so fast?
#5Re: Why is Postgres growing so fast?
#6Out of the top 5 databases, Postgres is the only on that had significant growth the previous year - +36 points. What is causing this comparative surge in popularity?
Postgres has been great, and it's free, so we roll it for almost everything now. I say almost everything because sometimes SQLite is a better fit-- when a DB is only a few MB on an internal app etc.
Re: Why is Postgres growing so fast?
#7For every percentage point of marketshare that Postgres takes, the risk in choosing Postgres decreases, and the risk of choosing an alternative increases.
Risk is:
- Will it continue to develop, get bugs fixed, security holes patched?
- Will it work with all future tech my company adopts?
- Will it remain Open Source? - etc...
Re: Why is Postgres growing so fast?
#8Re: Why is Postgres growing so fast?
#9Out of the top 5 databases, Postgres is the only on that had significant growth the previous year - +36 points. What is causing this comparative surge in popularity?
My take: * When the pendulum has swung back from NoSQL, MySQL was in a weird place due to Oracle. * OSS project and foundation not dominated by any particular company means that startups are willing to bet on it. In turn, these startups bring more tools, extensions, and attention to Postgres. * The open wire protocol, with multiple existing implementations, means that if your application depends on Postgres, you will…