LSM Tree
A write-optimized storage structure that buffers changes in memory and later merges sorted immutable files through compaction.
Boundaries
An LSM tree improves write patterns by deferring and merging data, but compaction can introduce read amplification, write amplification, and background I/O pressure.
Related Concepts
- Compaction
- Write Amplification
- Read Amplification
- Bloom Filter