Compaction - CI/CD用語集の定義
compaction は、多数の小さなファイルやテーブルパートをより少数の大きなものにマージするバックグラウンドプロセスです。削除された行から領域を回収し、何千もの小さなファイルをスキャンする読み取りごとのオーバーヘッドを減らします。
関連ガイド
Vacuum (Database) - CI/CD Glossary DefinitionVacuum reclaims storage occupied by dead rows left behind by updates and deletes in MVCC databases, preventin…
Materialized View - CI/CD Glossary DefinitionA materialized view stores the precomputed result of a query on disk and refreshes it, trading storage and st…
Columnar Storage - CI/CD Glossary DefinitionColumnar storage lays data out by column rather than row, so analytical queries read only the columns they ne…