From 88f8cec7970244ac4e6f5f3c7ffbb30d2e4b0b42 Mon Sep 17 00:00:00 2001 From: "Victor Adossi (\"vados\")" Date: Sun, 12 Feb 2023 18:15:06 +0900 Subject: [PATCH] improve comments around example volume growing operations --- FAQ.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index c98a9b1..b4e673d 100644 --- a/FAQ.md +++ b/FAQ.md @@ -28,9 +28,11 @@ SeaweedFS also assumes there is a default disk type, which is either empty or `" To pre-allocate volumes, send a request to the Master server. For example: ```shell -# To replica +# To create more volumes in a given data center curl "http://localhost:9333/vol/grow?dataCenter=000&count=4" # returns {"count":4} +# To create more volumes on a given rack curl "http://localhost:9333/vol/grow?rack=example-rack&count=4" # returns {"count":4} +# To create more volumes on a given volume server curl "http://localhost:9333/vol/grow?dataNode=example-node&count=4" # returns {"count":4} ```