Lessons Learned from 5 Years of Scaling PostgreSQL
onesignal.com
Lessons Learned from 5 Years of Scaling PostgreSQL
1–8 of 8 posts
Re: Lessons Learned from 5 Years of Scaling PostgreSQL
#2Re: Lessons Learned from 5 Years of Scaling PostgreSQL
#3I’m planning to use Postgres for my next Saas, But all these “issues” worry me. I have used MySQL in the past and, even though my web services don’t handle too many connections/transactions, MySQL always perform good. I’ve seen other articles regarding Postgres issues when it comes to scaling. I’ve come to realize that I like MySQL when it comes to performance, but I don’t like it when it comes to semantics and desig…
One of the nice things about PostgreSQL regardless of scale are the tools they provide for optimizing your application. EXPLAIN and EXPLAIN ANALYZE are really powerful tools for figuring out why a query performs badly and validating that indexing you add actually improved query performance.
Re: Lessons Learned from 5 Years of Scaling PostgreSQL
#4I’m planning to use Postgres for my next Saas, But all these “issues” worry me. I have used MySQL in the past and, even though my web services don’t handle too many connections/transactions, MySQL always perform good. I’ve seen other articles regarding Postgres issues when it comes to scaling. I’ve come to realize that I like MySQL when it comes to performance, but I don’t like it when it comes to semantics and desig…
Re: Lessons Learned from 5 Years of Scaling PostgreSQL
#5I’m planning to use Postgres for my next Saas, But all these “issues” worry me. I have used MySQL in the past and, even though my web services don’t handle too many connections/transactions, MySQL always perform good. I’ve seen other articles regarding Postgres issues when it comes to scaling. I’ve come to realize that I like MySQL when it comes to performance, but I don’t like it when it comes to semantics and desig…
Quick back of the number calculation for a pretty boring B2B CRUD app, at 75TB of data we'd have more income than the GDP of Earth. YMMV.
Re: Lessons Learned from 5 Years of Scaling PostgreSQL
#6I’m planning to use Postgres for my next Saas, But all these “issues” worry me. I have used MySQL in the past and, even though my web services don’t handle too many connections/transactions, MySQL always perform good. I’ve seen other articles regarding Postgres issues when it comes to scaling. I’ve come to realize that I like MySQL when it comes to performance, but I don’t like it when it comes to semantics and desig…
Both RDBMS have good performance. Lots of the issues we ran into really are related to scale. If you know that your data set will never be particularly large, most of these issues will not come up. Other issues like managing replicas, promotions, etc. will be shared between RDBMS. One of the nice things about PostgreSQL regardless of scale are the tools they provide for optimizing your application. EXPLAIN and EXPLAI…
Re: Lessons Learned from 5 Years of Scaling PostgreSQL
#7I’m planning to use Postgres for my next Saas, But all these “issues” worry me. I have used MySQL in the past and, even though my web services don’t handle too many connections/transactions, MySQL always perform good. I’ve seen other articles regarding Postgres issues when it comes to scaling. I’ve come to realize that I like MySQL when it comes to performance, but I don’t like it when it comes to semantics and desig…
Re: Lessons Learned from 5 Years of Scaling PostgreSQL
#8I’m planning to use Postgres for my next Saas, But all these “issues” worry me. I have used MySQL in the past and, even though my web services don’t handle too many connections/transactions, MySQL always perform good. I’ve seen other articles regarding Postgres issues when it comes to scaling. I’ve come to realize that I like MySQL when it comes to performance, but I don’t like it when it comes to semantics and desig…
Both RDBMS have good performance. Lots of the issues we ran into really are related to scale. If you know that your data set will never be particularly large, most of these issues will not come up. Other issues like managing replicas, promotions, etc. will be shared between RDBMS. One of the nice things about PostgreSQL regardless of scale are the tools they provide for optimizing your application. EXPLAIN and EXPLAI…