Viewing profile — michaeldejong
michaeldejong
HN member- Joined
- Sat, Mar 24, 2018, 11:50 AM UTC
- HN karma
- 23
- Public activity
- 8 items
- HN profile
- View on Hacker News ↗
About michaeldejong
No profile information was provided.
Recent public activity
-
comment
Comment #37756772
Very cool! Congratulations to the authors on the release! I'm the author of a similar (zero-downtime migration) tool for PG called QuantumDB[0]. It was the first (to my knowledge a…
-
comment
Comment #16984073
Actually both lock for many (crucial) schema operators, and often severely enough to block your application from reading from the table(s) under change. I've been researching this …
-
comment
Comment #16984054
I felt the same way, so I've been working on QuantumDB for the last couple of years. Take a look at https://quantumdb.io . QuantumDB doesn't use the binlog / WAL log like gh-ost do…
-
comment
Comment #16667604
Agreed. But to be fair I've not yet encountered such a library/tool yet. All tools I've seen leave the active table alone, and simply create a new table, do all their work there, a…
-
comment
Comment #16667597
I agree with that. If your database doesn't care about a "schema", there usually are no operations available which change the schema of your data. Unfortunately that also means tha…
-
comment
Comment #16667578
That's not great either. Moving the "master" role from one server to a replica isn't instantaneous (meaning you have a period of read-only state), and while your replica is perform…
-
comment
Comment #16667553
Indeed. It seems there are many such tools available for MySQL: Openark kit [0] for instance, whose author also brought us gh-ost. Unfortunately most tools focus on just MySQL, and…
-
comment
Comment #16666152
Researcher/author of a tool [0,1] also attempting to tackle this problem here. Unfortunately zero-downtime schema changes are even more complex than suggested here. Although the ex…