Alexey
February 27, 2023, 4:16am
7
This is a bad option - it cancel customers transfers due to “node is overloaded” (this is what they can see). It’s not a recommended solution, it’s a workaround for weak devices and SMR disks. The better solution is to move databases to SSD disk:
Hi guys.
So, I troubleshooted a lot on one of my nodes, and disk activity is always at 100%. The HDD just can´t keep up with the demand (:P) it´s a WD Blue but it gets almost occupied writing in databases.
Can I move the databases to my quicker system drive?
If so, how?
How to move DB’s to SSD on Docker
Before you beginning, please make sure that your SSD has good endurance (MLC is preferred), I personally recommend using SSD mirror.
look into the official documentation and make sure that you are using –mount type=bind parameter in your docker run string
Prepare a folder with mounted SSD outside of <storage-dir> from the official documentation. (it your folder with pieces)
Add a new mont string to your docker run string:
Now we have:
docker run -d --restar…