mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-24 02:59:13 +08:00
Updated Tiered Storage (markdown)
parent
335230f4f3
commit
78d108b6bc
@ -1,6 +1,14 @@
|
||||
All read and write operation for volume data is O(1) disk seek. However, there are fast, slow, and remote storages.
|
||||
Since data that are hot, warm, and cold, it would be cost-efficient to place data accordingly.
|
||||
|
||||
```
|
||||
|
||||
=> NVME => SATA SSD => Fast HDD => Slow HDD => Cloud
|
||||
|
||||
=> Critical => Hot => Less Hot => Warm => Cold
|
||||
|
||||
```
|
||||
|
||||
# Speed up volume index
|
||||
|
||||
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.
|
||||
|
Loading…
Reference in New Issue
Block a user