Last Update: Nov 19, 2024 | Published: Feb 23, 2015
I’ve written a number of articles during my time at the Petri IT Knowledgebase on Storage Spaces, but I have not talked about some of the advanced settings that have a direct impact on the performance of storage for Hyper-V virtual machines. In this article, I’ll share some tips on how to tweak Storage Spaces to get the best performance you can for storing your Hyper-V virtual machines.
Windows Server is a general server product that can do lots of specific tasks. As a result of this, Microsoft has to configure default settings that they perceive are best for most, but not all, scenarios. Many consultants and administrators make the mistake of using the GUI’s wizards and clicking Next, Next, Next until they have what they think is a finished solution. What they are doing is accepting the default under-the-covers values, and this affects performance. But those folks who’ve dug a little deeper and take time to ask questions about default settings have found that there are some changes that should be made.
If you are using a Cluster-in-a-Box (CiB) or a just-a-bunch-of-disks (JBOD) tray for Storage Spaces, then you have a SAS connection between your server and your disks. Multipath IO (MPIO) is used to unify and provide failover if you have multiple connections to the storage system. What you might not know is that Windows Server’s implementation of MPIO has a number of policies that configure how traffic is transmitted across those connections. In my testing I found that having the wrong policy could have a huge negative impact on storage performance.
The best MPIO policy to use is Least Blocks (LB), as this policy sends data through the connection with the least number of blocks currently being processed. If you want to do this, then you are going to have to use some PowerShell.
You can retrieve the current MPIO policy by running Get-MSDSMGlobalDefaultLoadBalancePolicy. To configure Least Blocks as the MPIO policy, you will run:
Set-MSDSMGlobalLoadBalancePolicy -Policy LB
If only things were that easy! According to Microsoft Support, you will also need to edit the registry, probably followed by the usual reboot requirement. Open the registry editor and navigate to HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesmsdsmParameters. You will have to create two registry values:
When formatting a volume, most people never give the Allocation Unit Size option a second thought. Allocation Unit Size is set to default, and most users simply click Next to get the format finished. What is that default allocation unit size? According to the most up-to-date documentation that I could find, the default allocation unit size depends on the size of the volume being formatted. If you have a 2 to 6 TB volume, then the allocation unit size will be 4 KB, but if it’s larger than 128 TB (well beyond the 64 TB supported max size of VSS), then you’ll have a 64 KB cluster. So what is best?
There is a reason Microsoft hasn’t provided a best-practice value because the allocation unit size really does depend on the workload that you will run in your virtual machines. However, when you are formatting a volume that will be used to store Hyper-V virtual machines, the best allocation unit size to use is 64K.
When you write data to a virtual disk (LUN), Storage Spaces will spread the data around the physical disks in the disk pool based on:
In the below diagram, there is a two-way mirrored volume with a column count of two. The virtual disk was created with the default interleave size, which is 256 KB. When data is written to the virtual disk, the data is broken up into interleaves (also called slabs) and spread across the disks, as you can see below. A chunk of data called A is split into two x 256 KB chunks of data (interleaves) called A1 and A2. Because this a two-way mirror, every interleave must be written to two different physical disks. A1 is written to Disk 1 and Disk 2, and A2 is written to Disk 3 and Disk 4.
What is the best size for the interleave if you intend to store Hyper-V virtual machines on the virtual disk? By default the interleave will be 256 KB, but this is not the best size for optimal performance. One of the most demanding workloads we normally have in virtual machines is a database, such as SQL Server. Microsoft recommends creating virtual disks with a 64 KB interleave size for workloads such as SQL Server. You can do this when creating a new virtual disk by running the New-VirtualDisk cmdlet with the –Interleave parameter.
Here are some other tips to be aware off: