Skip to content

Commit 948cba7

Browse files
authored
fix: update pebblesdb link (#110)
1 parent 23802b2 commit 948cba7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mini-lsm-book/src/week2-04-leveled.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ The implementation should be similar to simple leveled compaction. Remember to c
177177
* What is the peak storage usage for leveled compaction? Compared with universal compaction?
178178
* Is it true that with a lower `level_size_multiplier`, you can always get a lower write amplification?
179179
* What needs to be done if a user not using compaction at all decides to migrate to leveled compaction?
180-
* Some people propose to do intra-L0 compaction (compact L0 tables and still put them in L0) before pushing them to lower layers. What might be the benefits of doing so? (Might be related: [PebblesDB SOSP'17](https://www.cs.utexas.edu/~rak/papers/sosp17-pebblesdb.pdf))
180+
* Some people propose to do intra-L0 compaction (compact L0 tables and still put them in L0) before pushing them to lower layers. What might be the benefits of doing so? (Might be related: [PebblesDB SOSP'17](https://www.cs.utexas.edu/~vijay/papers/sosp17-pebblesdb.pdf))
181181
* Consider the case that the upper level has two tables of `[100, 200], [201, 300]` and the lower level has `[50, 150], [151, 250], [251, 350]`. In this case, do you still want to compact one file in the upper level at a time? Why?
182182

183183
We do not provide reference answers to the questions, and feel free to discuss about them in the Discord community.

0 commit comments

Comments
 (0)