Updated Tiered Storage (markdown)

Chris Lu 2021-02-22 02:11:29 -08:00
parent 7dabdf5f4c
commit 7fee83ecb8

@ -13,10 +13,10 @@ If the volume data also needs fast access, you can create them on fast disks.
For example, one volume server can have two disks with two kinds of disk types:
```
weed volume -max=10000 -disk=hdd,ssd -port=8080 -dir=/data,/ssd -compactionMBps=40 -minFreeSpacePercent=7
weed volume -max=10000 -disk=hdd,ssd -port=8080 -dir=/large_data,/fast_data -compactionMBps=40 -minFreeSpacePercent=7
```
Please notice the `-disk=hdd,ssd & -dir=/data,/ssd`.
Please notice the `-disk=hdd,ssd` and `-dir=/large_data,/fast_data`.
Then you can create with `fs.configure` a path specific setting and set buckets/collections that start with (example) "ssd_" to be allocated to the ssd, and all other collection will be created on the hdd. you can also create specific bucket name.