From 58dc7dcea09adc6b3555588ead48e412a7d24de6 Mon Sep 17 00:00:00 2001 From: Glowry Date: Tue, 18 Jul 2023 16:12:50 +0800 Subject: [PATCH] Updated Tiered Storage (markdown) --- Tiered-Storage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tiered-Storage.md b/Tiered-Storage.md index 3b1ae70..69fda26 100644 --- a/Tiered-Storage.md +++ b/Tiered-Storage.md @@ -13,7 +13,7 @@ Since data that are hot, warm, and cold, it would be cost-efficient to place dat To write any data, the volume index needs to append one entry. To read any data, the volume index lookup is required. The volume index can be in memory mode or an LevelDB instance. The amount of index content is small while it is accessed frequently. -You can run `weed volume -dir.idx=/fast/disk/dir` or `weed server -volume.dir.idx=/vast/disk/dir` to ensure the volume index is located on a fast disk, e.g., a fast SSD mount. +You can run `weed volume -dir.idx=/fast/disk/dir` or `weed server -volume.dir.idx=/fast/disk/dir` to ensure the volume index is located on a fast disk, e.g., a fast SSD mount. If the volume server already has some existing data, you can just stop the volume server, move the `.idx` files to the index folder, and restart the volume server.