32

It seems to me that since RAID volumes are logical (as opposed to physical), the layout that the OS believes they have might not correspond to the actual phsyical layout.

So does defrag make sense for RAID?

Aidan Ryan
  • 1,283

3 Answers3

33

Yes, defrag does still make sense for RAID. While it's true that the layout the OS sees isn't the same as the physical layout, it's monotonic, ie the virtual sectors are in the same order on the disk as they are on the array, it's just they are scattered across disks.

Also, the RAID controller will use predictive caching (if it has it) based on an understanding of the array layout, so that will work better if you have defrag.

The only time you don't need to defrag is if the underlying storage medium is random access, so don't defrag your USB key, and don't defrag an SSD.

6

Yes it does. No matter what RAID level you're running, you may still be affected by fragmentation (unless you're running SAN solutions like NetApp with their WAFL layout).

RAID1 is just a mirror of the fragmentation on both drives. RAID0 is just splitting fragmented files up on two drives. RAID5, 10, etc.

0

No.

  1. It is unlikely you will access the data on the drive in a linear fashion.
  2. The data is distributed across multiple drives so there is no "start" or "end" or "beginning".
  3. Writes are VERY expensive on the "typical" RAID 5 array. Even on other RAID layouts your using up power & CPU.
  4. Almost impossible to prove that defragging DOES actually improve performance.

Yes, on a desktop PC with a single drive. Servers? Not worth the effort.

Guy
  • 2,704