Hi.
I mostly use it as a backup storage, last backup took roughly 20 minutes for 75 GB, which is about the same speed it takes for a local backup.
My Proxmox Server is located at the same datacenter as the Storage Box.
I cloned a Debian VM just for testing. First the cloning process seemed to be stuck but then it finished instantly, maybe some caching issue. I did some tests:
Code:
root@debian:~# hdparm --direct -tT /dev/sda
/dev/sda:
Timing O_DIRECT cached reads: 138 MB in 2.03 seconds = 68.04 MB/sec
Timing O_DIRECT disk reads: 240 MB in 3.00 seconds = 79.87 MB/sec
Which is not that awesome compared to my NVMe-backed reference machine running on the same node:
Code:
root@something:~# hdparm --direct -tT /dev/sda
/dev/sda:
Timing O_DIRECT cached reads: 3602 MB in 2.00 seconds = 1800.58 MB/sec
Timing O_DIRECT disk reads: 8182 MB in 3.00 seconds = 2726.97 MB/sec
Now I installed mariadb. I tried to import an 18 MB MySQL dump:
Code:
root@debian:~# time mysql bla < sampledata.sql
real 1m12,652s
user 0m0,209s
sys 0m0,004s
Not great at all... The reference machine:
Code:
root@something:~# time mysql bla < sampledata.sql
real 0m0,678s
user 0m0,185s
sys 0m0,012s
During write operations the share was quite slow to access too. It could be problematic to have multiple instances writing at the same time.
Conclusion:
It is probably sufficient for some uncritical applications, but I wouldn't run a database or anything storage-heavy on it
. Maybe it's possible to tune some parameters, but I don't think it will do much. But as a store for templates, isos or backups it's a cheap and fine solution.