From 0b19c806fe7556dbc26232afa4e1112a0a7a0f19 Mon Sep 17 00:00:00 2001 From: cypppper <74357863+cypppper@users.noreply.github.com> Date: Tue, 19 Mar 2024 05:53:43 +0800 Subject: [PATCH] fix: typo (#64) --- mini-lsm-book/src/week2-03-tiered.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mini-lsm-book/src/week2-03-tiered.md b/mini-lsm-book/src/week2-03-tiered.md index fc572fd..fd3eef2 100644 --- a/mini-lsm-book/src/week2-03-tiered.md +++ b/mini-lsm-book/src/week2-03-tiered.md @@ -76,7 +76,7 @@ L67 (1): [67] L40 (27): [39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 13, 14, 15, 16, 17, 18, 19, 20, 21] ``` -The `num_iters` in the compaction simulator is set to 3. However, there are far more than 3 iters in the LSM state, which incurs large read amplification. +The `num_tiers` in the compaction simulator is set to 3. However, there are far more than 3 tiers in the LSM state, which incurs large read amplification. The current trigger only reduces space amplification. We will need to add new triggers to the compaction algorithm to reduce read amplification.