|
|
|
|
|
by njs12345
3617 days ago
|
|
No, the migration itself will cause transactions to stall. For example, if you have a table with 1M user records, and you run a migration to add a column in MySQL, then any updates to the table will be stalled while the table is rewritten to add the extra column (which may take a while). This is independent of how many records it touches - even if the transaction only touched 1 record and would take 10ms to execute, if the migration takes 10 minutes it may be stalled for up to 10 minutes. In Postgres you can add a nullable column, and the table will only be locked for a very short amount of time, independent of the size of the table. |
|