Hi,
Is there any affect on overall performance if capacity of hard disk increased to 8TB or 16TB from 6TB?
Processor is DM8168 for Digital Video Recorder and file system used is EXT4.
Regards
Rohit Khatri
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
Is there any affect on overall performance if capacity of hard disk increased to 8TB or 16TB from 6TB?
Processor is DM8168 for Digital Video Recorder and file system used is EXT4.
Regards
Rohit Khatri
Rohit,
The performance depends on: CPU speed, DDR/memory speed, filesystem used, cache size, linux lernel version, HDD disk.
If only HDD disk is different (larger in size), you can check the data rate (throughput number) in these HDD disks datasheets to compare.
We can improve performance by tuning filesystem (in example VFAT) parameters during filesystem creation. The two parameters which could be considered are, number of sectors per cluster and logical sector size. Modifying these parameters will vary the disk usage space and disk space wastage. Hence tradeoff has to be made between disk size and performance.
1. Sectors per cluster - 8, Logical sector size (bytes) - 512 : Improvement 1X (mkfs.vfat –F 32 /dev/sda1)
2. Sectors per cluster - 32, Logical sector size (bytes) - 512 : Improvement 2X (mkfs.vfat -F 32 -s 32 -S 512 -v /dev/sda1)
3. Sectors per cluster - 16, Logical sector size (bytes) - 4096 : Improvement 3X (mkfs.vfat -F 32 -s 16 -S 4096 -v /dev/sda1)
You can also run performance test on these 3 HDD disks to compare the results:

Regards,
Pavel