You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
// For example, you have a flash device with 10GB allocated for the DB,
// as well as a hard drive of 2TB, you should config it to be:
// [{"/flash_path", 10GB}, {"/hard_drive", 2TB}]
Because latest fast block importing and synchronizing is done in SSD , old and infrequent referencing block data will be stored in HDD.
It will helpful, shorterm storage scalability.
The text was updated successfully, but these errors were encountered:
IMO this should be solved at a lower level, i.e. pooling disks together using RAID/LVM or a filesystem with multi-disk capabilities (ZFS/btrfs). RocksDB, which is the database we're currently using, doesn't have any support for multiple disks. We'd have to shard the database to handle this use case and I don't see it providing any benefit over just creating a large virtual disk (both from a performance perspective and code complexity).
Before filing a new issue, please provide the following information.
Your issue description goes here below. Try to include actual vs. expected behavior and steps to reproduce the issue.
actual
Blockheights 58986xxx , FULL Archive mode sync : Storage is 1.24TB in 2TB SSD.
It is increasing very stiff. when 2TB SSD will be full soon.
suggestion
For solve this kind of storage scalability , I suggest parity use multiple [dbpaths storage options provided by rocksdb.](https://github.com/facebook/rocksdb/blob/17339dc2f39a87a9cf097e056a59560b0795ff6e/include/rocksdb/options.h#L468 ,"db_paths options")
Because latest fast block importing and synchronizing is done in SSD , old and infrequent referencing block data will be stored in HDD.
It will helpful, shorterm storage scalability.
The text was updated successfully, but these errors were encountered: