vote up 1 vote down star

IT is running a series of VMs that we'd like to see optimized further: if the VMs' are Windows XP, storing their NTFS images out to the virtual disk (ext3) provided by Linux/VMWare, how much of a hit are we taking - as opposed to having a partition of the host hard drive formatted NTFS to eliminate the translation layer and the extra level of operating system IO preparation?

flag

39% accept rate
1  
Interesting question, but not really programming-related. See: stackoverflow.com/questions/321618/… – Shog9 Apr 16 at 22:52
1  
This would be the type of question that would go on serverfault (once it opens). – Zifre Apr 16 at 23:15

closed as belongs on serverfault.com by Mehrdad Afshari, Ray, Shog9, Jeff Atwood Apr 17 at 8:12

3 Answers

vote up 1 vote down

You will get a noticeable improvement by using dedicated disks rather than a virtual file system. You already stated the logic: going through another layer of software just slows things down.

It's now a matter of what the performance is worth to you financially. :)

link|flag
vote up 0 vote down

You are probably losing some performance by using a virtual disk, so the fastest way would to have a separate drive. Another way would be to have a separate partition on the main drive formatted as NTFS. This is definitely faster than a virtual disk, but it is slower than a separate drive.

link|flag
vote up 0 vote down

This would be better asked over at the VMware Forums where you can get the advice of people who do this kind of performance tuning for a living. You're not going to get any hard numbers about how much of a hit you're taking here :)

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.