Our Journey to PostgreSQL 12
tech.coffeemeetsbagel.com
Our Journey to PostgreSQL 12
1–10 of 116 posts
Re: Our Journey to PostgreSQL 12
#2Also liked the couple of gotchas which go to show no matter how smooth a data migration is, there'll be some bumps.
Re: Our Journey to PostgreSQL 12
#3Did they migrate into Amazon RDS while doing this? For smaller projects I've stopped doing the self managed postgresql thing. The pricing is higher (75%?) for RDS for some use cases but can be worth it.
Going to try RDS Proxy next.
Re: Our Journey to PostgreSQL 12
#4Re: Our Journey to PostgreSQL 12
#5Re: Our Journey to PostgreSQL 12
#6Very nice. Did they migrate into Amazon RDS while doing this? For smaller projects I've stopped doing the self managed postgresql thing. The pricing is higher (75%?) for RDS for some use cases but can be worth it. Going to try RDS Proxy next.
Re: Our Journey to PostgreSQL 12
#7I love RDBMS over NoSql but the whole upgrade and schema change always is stressful. I miss the days when we could ask our DBA to deal with it. :)
Re: Our Journey to PostgreSQL 12
#8Think about it for a sec: SQL is literally just a language to query and manipulate data. There's no reason that schema changes and data changes have to happen only through the one language, and only through one interface on one piece of software.
For whatever reason, this has just been how the most popular products have done it, and they largely just never changed their designs in 40 years. I like the language, and the general organization of the data is handy. But everything else about it is archaic.
Why fumble around with synchronization? 99% of the data in big datasets doesn't change. This doesn't even have to be "log-based", we just need to be able to ship the old, stable data and treat it almost like "cold storage".
Why is there a single point of entry into the data? You have to use the one database cluster to access the one database and the one set of tables. Why can't we expose that same data in multiple ways, using multiple pieces of software, on multiple endpoints?
Other protocols and languages have ways of dealing with these kinds of things. LDAP can refer you to a different endpoint to process what you need. Web servers can store, process, and retrieve the same content across many different endpoints in a variety of ways. Lots of technology exists that can easily replicate, snapshot, version-control, etc arbitrary pieces of data and expose them to any application using standard interfaces.
Why haven't we created a database yet which works more like the Unix operating system?
Re: Our Journey to PostgreSQL 12
#9I'm curious how much risk of data loss this added.
I guess the baseline is "we need to migrate before we run out of disk" I.e. you're either going to have data loss or a long period of unavailability if the migration cannot be carried out fast enough.