• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.
  • The forums have been upgraded with support for dark mode. By default it will follow the setting on your system/browser. You may override it by scrolling to the end of the page and clicking the gears icon.

Seagate Ships World's First 8 TB Hard Drives

Imagine trying to access 8tb of data on a HDD, i'd much rather raid together smaller drives. The only purpose i can see for single 8tb drives at the moment is data backup, reminds me of tape backups which where also slow as molasses.
 
Imagine trying to access 8tb of data on a HDD, i'd much rather raid together smaller drives. The only purpose i can see for single 8tb drives at the moment is data backup, reminds me of tape backups which where also slow as molasses.
Most likely these drives will use higher density platters, which means higher transfer speeds than existing drives, somewhat mitigating the issue.

That said, while the number of sectors per cylinder is increasing (which results in increased transfer rate), the number of cylinders per drive is also increasing as areal density increases. Since the drive can only read from one cylinder per platter, that means the time to empty a drive increases as the number of cylinders increases.

I fear that at some point writing or reading an entire drive will become a day-long affair. This would make most types of RAID worthless because the chances of the array failing due to a second drive failing during a rebuild would be very high. I remember having a 40GB drive back in 2000 that wrote at 30MB/s, which meant I could read the whole drive in about 22 minutes. Now the 4TB drives in 2014 transfer at ~180MB/s, which means that reading the whole drive takes about 370 minutes. By this logic we only need ~250TB drives before reading the entire drive takes longer than a whole day.
 
Last edited by a moderator:
You don't have to write the entire drive to do a RAID rebuilt, just the part with data on it. Though with volumes this big, RAID6 is highly recommended.
 
You don't have to write the entire drive to do a RAID rebuilt, just the part with data on it.

Only if your drive is partitioned by the RAID controller to not use 100% of its available capacity, which seems like an unlikely scenario.

The RAID controller is dissociated from the file system. Without knowing which sectors are relevant data and which are deleted data, the RAID controller has to reconstruct every sector, deleted files and all.
 
Last edited:
Only if your drive is partitioned by the RAID controller to not use 100% of its available capacity, which seems like an unlikely scenario. The RAID controller is dissociated from the file system. Without knowing which sectors are relevant data and which are deleted data, the RAID controller has to reconstruct every sector, deleted files and all.

With RAID5/6, the parity is used to reconstruct the data that should be on the replacement drive. So only the part with actual data is written, not every sector. With RAID1, only the occupied sectors are copied, again not the entire drive.

Yes, that does mean that sectors that are occupied by deleted file data will be rebuilt/mirrored, since we know deleting a file doesn't actually delete the file from the drive just the pointer in the file table. But that is why it is a good idea to run a tool like the Wipe Free Space tool in CCleaner to wipe the free space on the volume. That way time isn't wasted rebuilding/mirroring data that has been deleted.

But, again, you don't write the entire drive during a rebuild, just the part with data on it, even if that data is garbage data.
 
Back
Top