Why are the hard disks on a Windows Home Server always active?

0

1

Why are the hard disks on a Windows Home Server always active?

They are always running and making a noise as if they are constantly being read from and written to.

Techboy

Posted 2010-08-16T09:48:56.583

Reputation: 395

1This will probably be migrated to SuperUser as its about a home server... The obvious comment I'd make in the meantime is perhaps they are constantly being accessed, so the question is why. Is this a fresh install that might still be getting indexed or virus scanned or some other similar nonsense. Could data be getting mirrored to another disk, etc? – None – 2010-08-16T10:10:46.837

Indexing, virus scan, defragmenting (if you installed such software), WHS duplication, etc... Mine is often active seemingly for nothing, then I look later and it's quiet. – MetalMikester – 2010-09-17T17:38:25.083

Answers

2

The culprit it's demigrator (drive extender migrator) It's a system service that every now and then compares the content of ALL the drives in the storage pool and syncs the files between the disks.

It can cause a big slowdown sometimes (50% of cpu time in my server). That's why Microsoft dumped the drive extender feature in VHSv2/Vail/Fail

I schedule to run it when I don't use the server

Magnetic_dud

Posted 2010-08-16T09:48:56.583

Reputation: 3 210

5

Download processexplorer and see if there's a process that is active. It's part of the free sysinternals suite. There should also be process monitor and/or file monitor that should tell you about process and disk activity. It's possible that something is using the server's disks.

You should also check the logs to see if something is showing up there.

Bart Silverstrim

Posted 2010-08-16T09:48:56.583

Reputation: 1 755

1

I noticed this in mine as well. There's a process out there that is constantly (like every 30 minutes it seems) doing load balancing to spread the files in your shares over multiple disks. File duplication increases the work this process needs to do as it has to make sure every file is on at least 2 separate disks.

David

Posted 2010-08-16T09:48:56.583

Reputation: 403

0

Probably there is some process running that's thrashing the disks - I concur with the previous answer of Process Explorer.

One other possibility, though, since you don't specify that you hear heads clicking, just noise from the disks - if you have power management settings set to max performance oftentimes the disks will never spin down (this prevents any delay on the next disk access). This should be configurable in the advanced power options.

Shinrai

Posted 2010-08-16T09:48:56.583

Reputation: 18 051