ACID - CI/CD用語集の定義
ACIDはトランザクションの保証の集合で、Atomicity、Consistency、Isolation、Durabilityを指します。
ACIDは信頼性の高いトランザクションのための保証の集合で、Atomicity(原子性)、Consistency(一貫性)、Isolation(分離性)、Durability(永続性)を指します。
ACIDなデータベースでは、マイグレーションツールがトランザクショナルなDDLに依存できるため、失敗したマイグレーションは中途半端なschemaを残さずきれいにrollbackされます。
関連ガイド
Database Transaction - CI/CD Glossary DefinitionDatabase Transaction: A database transaction is a unit of work that either completes entirely or has no effec…
Eventual Consistency - CI/CD Glossary DefinitionEventual Consistency: Eventual consistency is a model where replicas may briefly disagree after a write but c…