Idempotent Migration - CI/CD用語集の定義
idempotent migrationは、1回実行しても複数回実行しても同じ結果になり、IF NOT EXISTSのようなガードを用います。
idempotent migrationは、1回実行しても複数回実行しても同じ結果になるマイグレーションで、通常は IF NOT EXISTS のようなガードを用います。
idempotent migrationは再実行しても安全であり、デプロイが中断されてpipelineがマイグレーションのステップを再実行する場合に重要になります。
関連ガイド
Database Migration - CI/CD Glossary DefinitionDatabase Migration: A database migration is a versioned, ordered change to a database schema or data, applied…
Zero-Downtime Migration - CI/CD Glossary DefinitionZero-Downtime Migration: A zero-downtime migration changes the schema without interrupting service, by making…
Expand-Contract Migration - CI/CD Glossary DefinitionExpand-Contract Migration: An expand-contract migration splits a breaking schema change into an additive expa…