Daniel's Tech Blog

Cloud Computing, Cloud Native & Kubernetes

Deploying Storage Spaces Direct on a Single Node SOFS Cluster

In my previous post on how to deploy Windows Server 2016 TP3 onto an SD card I introduced you to my new server system.

-> https://www.danielstechblog.io/how-to-deploy-windows-server-2016-tp3-onto-an-sd-card/

The reason why I bought this system was to play around with Storage Spaces Direct in Windows Server 2016 TP3. Regarding the testing guide Microsoft recommends four servers to test Storage Spaces Direct.

-> https://technet.microsoft.com/en-us/library/mt126109.aspx

So I only have one system and I want to test Storage Spaces Direct with only one node in a SOFS cluster. The initial challenge is the Fault Domain Awareness of Storage Spaces Direct. Per default it is based on the scaling unit. That said you cannot set up Storage Spaces Direct with a single node using the wizard. You have to use PowerShell, because you can specify the value for the Fault Domain Awareness. This value has to be set to PhysicalDisk and you get Storage Spaces Direct to work on a single node SOFS cluster.

I have used the following PowerShell cmdlets to setup Storage Spaces Direct. Before you do that make sure you created the SOFS cluster. The important parameter here is -FaultDomainAwarenessDefault in the New-StoragePool cmdlet.

Enable-ClusterStorageSpacesDirect
New-StoragePool -StorageSubSystemName "SOFSCLUSTER.neumanndaniel.local" -FriendlyName "S2D" -WriteCacheSizeDefault 0 -ProvisioningTypeDefault Fixed -ResiliencySettingNameDefault Mirror -PhysicalDisk (Get-StorageSubSystem  -Name "SOFSCLUSTER.neumanndaniel.local" | Get-PhysicalDisk) -LogicalSectorSizeDefault 4096 -FaultDomainAwarenessDefault PhysicalDisk
New-Volume -StoragePoolFriendlyName "S2D" -FriendlyName "CSV01" -ResiliencySettingName Mirror -PhysicalDiskRedundancy 1 -FileSystem CSVFS_ReFS -Size 1.8TB -AllocationUnitSize 64KB
Set-FileIntegrity "C:\ClusterStorage\CSV01" –Enable $false

Afterwards I went into the VMM console to add the SOFS cluster to VMM for management.

S2D01S2D02S2D03S2D04S2D05S2D06S2D07

As you can see it in the screenshots you can fully manage a SOFS cluster with Storage Spaces Direct in System Center 2016 TP3 Virtual Machine Manager.

WordPress Cookie Notice by Real Cookie Banner