Online Schema Change (mudanca de esquema online) - Definicao do Glossario CI/CD
Uma mudanca de esquema online altera uma tabela grande sem bloquear leituras e escritas, tipicamente construindo uma copia sombra com a nova estrutura e substituindo-a. As ferramentas incluem gh-ost e pt-online-schema-change.
Por que
Um ALTER TABLE ingenuo em uma tabela grande pode manter um lock por minutos e travar a aplicacao. As ferramentas online copiam linhas em segundo plano e fazem o cutover de forma atomica, o que e o que torna possivel uma migracao com zero downtime no MySQL.
Guias relacionados
Zero-Downtime Migration - CI/CD Glossary DefinitionZero-Downtime Migration: A zero-downtime migration changes the schema without taking the application offline,…
Database Index - CI/CD Glossary DefinitionDatabase Index: A database index is an auxiliary data structure (usually a B-tree) that lets the database fin…
Schema Migration - CI/CD Glossary DefinitionSchema Migration: A schema migration changes the structure of a database (tables, columns, indexes, constrain…