Stop using MySQL in 2026, it is not true open source
11–20 of 37 posts
Re: Stop using MySQL in 2026, it is not true open source
#12From my experience MariaDB is not necessarily better than MySQL. The 8.x line brought many interesting features. I dream on switch to Postgres, and try every year but for my use case MySQL is still superior (100Bi+ rows for large texts, and heavy modified - I´m also space constrained - So I need data compression and the VACUUM are not good.) The percona distribution is very good!
Re: Stop using MySQL in 2026, it is not true open source
#13Re: Stop using MySQL in 2026, it is not true open source
#14I'm stuck on MySQL because converting to postgres is hard, the tool everyone recommends (pgloader) doesn't work with current MySQL ( https://github.com/dimitri/pgloader/issues/782 ), anyone know another way?
Re: Stop using MySQL in 2026, it is not true open source
#15The author is right that usage is dropping, but that really has no bearing on whether or not it is open source. Technologies get replaced all the time regardless of the license they use.
Re: Stop using MySQL in 2026, it is not true open source
#16I'm stuck on MySQL because converting to postgres is hard, the tool everyone recommends (pgloader) doesn't work with current MySQL ( https://github.com/dimitri/pgloader/issues/782 ), anyone know another way?
How big of a DB are we talking about? You might need to recreate the whole DB schema / structure manually from scratch in PostgreSQL and then dump the data and load it in PG via standard SQL file exports in the correct table order to avoid failures due to FK constraints. This is a gross oversimplification but you get the gist
Re: Stop using MySQL in 2026, it is not true open source
#17Re: Stop using MySQL in 2026, it is not true open source
#18Earlier quoted context omitted.
How big of a DB are we talking about? You might need to recreate the whole DB schema / structure manually from scratch in PostgreSQL and then dump the data and load it in PG via standard SQL file exports in the correct table order to avoid failures due to FK constraints. This is a gross oversimplification but you get the gist
In fact I don't get the gist :) but thanks for your reply. All I know about databases is following instructions to set one up as part of a LAMP/FAMP installation.
I know you mentioned that all you know about databases is following instructions, but maybe the folks at EDB or Percona can give you a hand.
Postgres will be around for a long time, and I think it's pretty obvious that MySQL won't.
Re: Stop using MySQL in 2026, it is not true open source
#19I'm stuck on MySQL because converting to postgres is hard, the tool everyone recommends (pgloader) doesn't work with current MySQL ( https://github.com/dimitri/pgloader/issues/782 ), anyone know another way?
Have you tried it doing it yourself?