How to scale MySQL horizontally?

hypnotic_nerd@programming.dev to Asklemmy@lemmy.ml – 27 points –

What is the industry/production grade solutions or if you have already any experience please share it. Thanks

12

You are viewing a single comment

Use postgres

I'm glad someone else said it... It may sound glib but the performance limits between Postgres and MySQL are night and day.

More seriously though... Read replication is how you horizontally scale any RDBMS. Read replication unlocks a serious amount of read bandwidth but it comes at a (usually steep) technical cost to migrate logic to be handle aware - especially when it comes to complex transactions.

2 more...
2 more...