Online DDL strategies
Vitess supports both managed, online schema migrations (aka Online DDL) as well as unmanaged migrations. How Vitess runs a schema migration depends on the DDL strategy. Vitess allows these strategies:
vitess(formerly known asonline): utilizes Vitess's built-in VReplication mechanism. This is the preferred strategy in Vitess.mysql: managed by the Online DDL scheduler, but executed via normal MySQL statement. Whether it is blocking or not is up to the specific query.direct: unmanaged. The direct apply of DDL to your database. Whether it is blocking or not is up to the specific query.
gh-ost and pt-osc strategies are not supported as of v22.See also ddl_strategy flags.
Specifying a DDL strategy #
You can apply DDL strategies to your schema changes in these different ways:
- The command
vtctldclient ApplySchematakes a--ddl-strategyflag. The strategy applies to the specific changes requested in the command. The following example applies thevitessstrategy to three migrations submitted together:
$ vtctldclient ApplySchema --ddl-strategy "vitess" --sql "ALTER TABLE demo MODIFY id bigint UNSIGNED; CREATE TABLE sample (id int PRIMARY KEY); DROP TABLE another;" commerce
ab185fdf_6e46_11ee_8f23_0a43f95f28a3
- Set
vtgate --ddl-strategyflag. Migrations executed from withinvtgatewill use said strategy.
$ vtgate --ddl-strategy="vitess"
$ mysql
mysql> alter table corder force;
+--------------------------------------+
| uuid |
+--------------------------------------+
| 2015f08d_6e46_11ee_a918_0a43f95f28a3 |
+--------------------------------------+
- Set the
@@ddl_strategysession variable to override the value ofvtgate's--ddl-strategyflag, for the current session.
mysql> set @@ddl_strategy="vitess --postpone-completion --allow-concurrent";
Query OK, 0 rows affected (0.01 sec)
mysql> alter table corder force;
+--------------------------------------+
| uuid |
+--------------------------------------+
| 861f7de9_6e46_11ee_a918_0a43f95f28a3 |
+--------------------------------------+
Notes on vitess strategy #
The vitess strategy invokes Vitess's built in VReplication mechanism. It is the mechanism behind resharding, materialized views, imports from external databases, and more. VReplication migrations use the same logic for copying data as do other VReplication operations, and as such the vitess strategy is known to be compatible with overall Vitess behavior. VReplication is authored by the maintainers of Vitess.
vitess migrations enjoy the general features of VReplication:
- Seamless integration with Vitess.
- Seamless use of the throttler mechanism.
- Visibility into internal working and status of VReplication.
- Agnostic to planned reparenting and to unplanned failovers. A migration will resume from point of interruption shortly after a new primary is available.
vitess migrations further:
Are revertible: you may switch back to the pre-migration schema without losing any data accumulated during and post migration.
Support a wider range of schema changes. For example, while
gh-osthas a strict requirement for a shared unique key pre/post migration,vitessmigrations may work with different keys, making it possible to modify a table'sPRIMARY KEYwithout having to rely on an additionalUNIQUE KEY.Support cut-over backoff: should a cut-over fail due to timeout, next cut-overs take place at increasing intervals and up to
30minintevals, so as to not overwhelm production traffic.Support forced cut-over, to prioritise completion of the migration over any queries using the mgirated table, or over any transactions holding locks on the table.
vitessmigrations supportINSTANTDDL where applicable. See INSTANT DDL. A migration that runs withALGORITHM=INSTANTdoes not use a shadow table and is not revertible.RANGEpartitioning rotation:ADD PARTITIONandDROP PARTITIONstatements are executed directly against MySQL and not as avreplicationOnline DDL. See PARTITIONING notesvitessmigrations use an atomic cut-over based on MySQL locking. At the end of the migration, the tables are switched, and incoming queries are momentarily blocked, but not lost. In addition,vitessoffers a buffering layer, that reduces the contention on the database server at cut-over time.vitessstrategy supports foreign keys using a custom built MySQL server, found in https://github.com/planetscale/mysql-server, and using experimental--unsafe-allow-foreign-keysDDL strategy flag. Otherwisevitessdoes not allow making changes to a table participating in a foreign key relationship.
Strategy functionality comparison #
| Strategy | Managed | Online | Trackable | Declarative | Revertible | Recoverable | Backoff |
|---|---|---|---|---|---|---|---|
vitess | Yes | Yes* | Yes+ | Yes | CREATE,DROP,ALTER | Yes | Yes |
mysql | Yes | MySQL* | Yes | Yes | No | No | No |
direct | No | MySQL* | No | No | No | No | No |
- Managed: whether Vitess schedules and operates the migration
- Online:
- MySQL supports limited online (
INPLACE) DDL as well asINSTANTDDL. See support chart.INSTANTDDL is instant on both primary and replicas.INPLACEis non-blocking on parent but serialized on replicas, causing replication lag. Otherwise migrations are blocking on both primary and replicas. vitesssupports foreign keys on a patched MySQL server and with--unsafe-allow-foreign-keysDDL strategy flag.
- MySQL supports limited online (
- Trackable: able to determine migration state (
ready,running,completeetc)vitessstrategy also makes available progress % and ETA seconds
- Declarative: support
--declarativeflag - Revertible:
vitessstrategy supports revertibleALTERstatements (orALTERs implied by--declarativemigrations). All managed strategies supports revertibleCREATEandDROP. - Recoverable: a
vitessmigration interrupted by planned/unplanned failover, automatically resumes work from point of interruption. Vitess will automatically retry the migration (by marking the migration as failed and by initiating aRETRY), exactly once for any migration. - Backoff: if the final cut-over step times out due to heavy traffic or locks on the migrated table, Vitess retries it in increasing intervals up to
30minapart, so as not to further overwhelm production traffic.