O'Neil, P., Cheng, E., Gawlick, D., O'Neil, E. "The Log-Structured
Merge-Tree (LSM-Tree)." Acta Informatica 33(4), 1996. — Original
description of the immutable run / multi-level merge architecture.
Chang, F. et al. "Bigtable: A Distributed Storage System for
Structured Data." OSDI 2006. — Introduces the SSTable term and the
blocks-plus-index layout this lab mirrors.
LevelDBtable/format.h, table/table_builder.cc,
table/block_builder.cc, table/block.cc — canonical reference for
this lab. The data block format here is the LevelDB block format
with restart-point compression removed for clarity.
RocksDBtable/block_based/block_based_table_builder.cc — adds
bloom-filter blocks, compression, and partitioned indices on top of
the same skeleton.
CockroachDB Pebblesstable/writer.go and sstable/reader.go —
Go implementation in idiomatic style.