-
Notifications
You must be signed in to change notification settings - Fork 402
Commit
Signed-off-by: Alex Chi Z <[email protected]>
- Loading branch information
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.content img { | ||
margin-left: auto; | ||
margin-right: auto; | ||
display: block; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Mini-LSM v1 | ||
|
||
This is a legacy version of the Mini-LSM tutorial and we will not maintain it anymore. We are working on a new version of the tutorial. We keep the legacy version in this book so that the search engine can keep the pages in the index and users can follow the links to the new version of the tutorial. | ||
|
||
## V1 Tutorial Overview | ||
|
||
![Tutorial Overview](legacy-lsm-tutorial/00-lsm-tutorial-overview.svg) | ||
|
||
In this tutorial, we will build the LSM tree structure in 7 days: | ||
|
||
* Day 1: Block encoding. SSTs are composed of multiple data blocks. We will implement the block encoding. | ||
* Day 2: SST encoding. | ||
* Day 3: MemTable and Merge Iterators. | ||
* Day 4: Block cache and Engine. To reduce disk I/O and maximize performance, we will use moka-rs to build a block cache | ||
for the LSM tree. In this day we will get a functional (but not persistent) key-value engine with `get`, `put`, `scan`, | ||
`delete` API. | ||
* Day 5: Compaction. Now it's time to maintain a leveled structure for SSTs. | ||
* Day 6: Recovery. We will implement WAL and manifest so that the engine can recover after restart. | ||
* Day 7: Bloom filter and key compression. They are widely-used optimizations in LSM tree structures. | ||
|
||
## Development Guide | ||
|
||
We provide you starter code (see `mini-lsm-starter` crate), where we simply replace all function body with | ||
`unimplemented!()`. You can start your project based on this starter code. We provide test cases, but they are very | ||
simple. We recommend you to think carefully about your implementation and write test cases by yourself. | ||
|
||
* You can use `cargo x scheck` to run all test cases and do style check in your codebase. | ||
* You can use `cargo x copy-test dayX` to copy test cases to the starter code. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,16 @@ | ||
# Leveled Compaction | ||
|
||
|
||
<div class="warning"> | ||
|
||
This is a legacy version of the Mini-LSM tutorial and we will not maintain it anymore. We are working on a new version of this tutorial | ||
and this chapter is now part of: | ||
|
||
- [Mini-LSM Week 2 Day 1: Compaction Implementation](./week2-01-compaction.md) | ||
- [Mini-LSM Week 2 Day 2: Simple Compaction Strategy](./week2-02-simple.md) | ||
- [Mini-LSM Week 2 Day 3: Tiered Compaction Strategy](./week2-03-tiered.md) | ||
- [Mini-LSM Week 2 Day 4: Leveled Compaction Strategy](./week2-04-leveled.md) | ||
|
||
</div> | ||
|
||
We did not finish this chapter as part of Mini-LSM v1. |