05 Mar 2015

Set default values on Storage Pools to minimize layer 8 issues

Storage Spaces allows you to define default values on a Storage Pool, so every new created virtual disk (space) is using those values, even if the administrator does not provide them or doesn’t know how to provide them. A common issue arises when fabric administrators are using one of the GUI options to create spaces, either the Server Manager or SCVMM. Why?

Server Manager GUI does not provide advanced options while creating a virtual disk such as:

  • write back cache
  • interleave
  • physical disks to use
  • rebuild options
  • missing disks response
  • column size

SCVMM in vCurrent does not support one of the option above, nor the option to create tiered spaces.

So how could we ensure that new spaces are created with the correct options (which may vary according to your specific environment of course)?

The answer is (of course you know it already :-)…Powershell

The following CMDLETs let you define the default options:

  • Set-StoragePool
  • Set-ResiliencySetting

 

Example

We want to ensure that each newly created virtual disk has the following options set:

  • Resiliency Setting:  DUAL MIRROR
  • Writeback Cache Auto Size: 1GB
  • Number of Columns: 4
  • Interleave: 64KB
  • Enclosureaware: TRUE
  • ProvisioningType: FIXED
  • RepairPolicy: PARALLEL
  • Retire missing PhysicalDisks: ALWAYS

And here are the commands to achieve this:

#Set the default Pool Options

Get-StoragePool "My Pool1" | Set-StoragePool -RetireMissingPhysicalDisks Always -RepairPolicy Parallel
Get-StoragePool "My Pool1" | Set-StoragePool -ResiliencySettingNameDefault Mirror -ProvisioningTypeDefault Fixed -EnclosureAwareDefault $true -AutoWriteCacheSize $true
#Set the default Options for MIRROR Resiliency

Get-StoragePool "My Pool1" | Set-ResiliencySetting -Name Mirror -NumberOfDataCopiesDefault 2 -NumberOfColumnsDefault 4 -InterleaveDefault 64KB

With these two simple commands we can ensure that new spaces follow our policy regardless of how they have been created. However, the limitation of SCVMM not being capable of creating tiered spaces remains, at least in the current version. The settings also help when using the New-Volume CMDLET to “Create clustered Storage Spaces a lot faster

If you want to know more about Storage Spaces in general I’d recommend to read through the following blogs and documentations:

Storage Spaces survival Guide

http://blogs.technet.com/b/josebda/archive/2014/10/22/storage-spaces-survival-guide-links-to-presentations-articles-blogs-tools.aspx

Monitor Storage Tiers Performance

https://technet.microsoft.com/library/c8c07015-3e0e-48be-b4c4-e58dabf39553.aspx#BKMK_HOW_OptimizeOnDemand

 

The matter of Column Sizes with Storage Spaces

http://www.miru.ch/why-column-size-does-matter-with-storage-spaces/

 

Get a Storage Spaces Health and Statistics Overview via Powershell

http://www.miru.ch/get-a-brief-storage-spaces-status-overview-via-powershell/