Vacuum (Database) - CI/CD用語集の定義
vacuum は、MVCC のもとで update や delete が残したデッド行バージョンが保持する領域を回収するデータベースのメンテナンス操作です。これがないと、テーブルは肥大化し、時間とともにクエリ性能が低下します。
関連ガイド
Compaction - CI/CD Glossary DefinitionCompaction merges many small data files or table parts into fewer larger ones, reclaiming space and speeding…
Snapshot Isolation - CI/CD Glossary DefinitionSnapshot isolation gives each transaction a consistent point-in-time view of the database, so reads never blo…