Data Backfill - CI/CD用語集の定義
data backfillは、新規または変更されたカラムを既存のすべての行に埋めるもので、通常はlockingを避けるためバッチで行います。
data backfillは、schema migrationがカラムを追加した後に、新規または変更されたカラムを既存のすべての行に対して埋めるもので、通常はlockingを避けるためバッチで行います。
backfillは数百万行に触れることがあるためschema migrationとは別に実行します。pipelineはデプロイをブロックせず、バックグラウンドのjobとして実行することがよくあります。
関連ガイド
Database Migration - CI/CD Glossary DefinitionDatabase Migration: A database migration is a versioned, ordered change to a database schema or data, applied…
Dual Write - CI/CD Glossary DefinitionDual Write: A dual write has application code write to both the old and new schema (or store) at once during…
Seed Data - CI/CD Glossary DefinitionSeed Data: Seed data is a set of initial records inserted into a database to give an application a usable bas…