Write-Ahead Log - CI/CD用語集の定義
write-ahead log (WAL) は、データベースが各変更をデータファイルに適用する前に書き込む追記専用の記録です。クラッシュ復旧時に WAL を再生することで一貫した状態が復元され、耐久性が保証されます。
関連ガイド
Change Data Capture - CI/CD Glossary DefinitionChange data capture (CDC) streams row-level inserts, updates, and deletes out of a database in real time, usu…
Snapshot Isolation - CI/CD Glossary DefinitionSnapshot isolation gives each transaction a consistent point-in-time view of the database, so reads never blo…
Two-Phase Commit - CI/CD Glossary DefinitionTwo-phase commit coordinates a transaction across multiple systems: a prepare phase votes, then a commit phas…