Vacuum (Database) - CI/CD Glossary Definition
Vacuum is a database maintenance operation that reclaims storage held by dead row versions left behind by updates and deletes under MVCC. Without it, tables bloat and query performance degrades over time.
Related guides
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…