2x 1.75TB SSD + 4x 4TB HDD but creating a volume gives: The storage pool does not have sufficient eligible resources for the creation of the specified virtual disk (Windows 2019) both in the GUI as in PowerShell

Micro Zoft 1 Reputation point
2021-02-16T21:33:47.467+00:00

Per title: I first tried it with the GUI of Server Manager - File and Storage Services - Volumes - Storage Pools but that threw an error.

So I went to the PS shell, and followed the "gebase.45drives.com kb450193 creating mirror accelerated parity volumes and storage tiers in storage spaces (windows server 2019)" instructions (http://knowledgebase.45drives.com/kb/kb450193-creating-mirror-accelerated-parity-volumes-and-storage-tiers-in-storage-spaces-windows-server-2019/)

The Storage Pool is created with the GUI and that works fine.

Then I go the PS Shell:

PS C:\Windows\system32> New-StorageTier -StoragePoolFriendlyName StoragePool -FriendlyName performance -MediaType SSD

FriendlyName TierClass MediaType ResiliencySettingName FaultDomainRedundancy Size FootprintOnPool StorageEfficiency
------------ --------- --------- --------------------- --------------------- ---- --------------- -----------------
performance  Unknown   SSD       Mirror                1                     0 B             0 B


PS C:\Windows\system32> New-StorageTier -StoragePoolFriendlyName StoragePool -ResiliencySettingName Parity -FriendlyName capacity -MediaType HDD

FriendlyName TierClass MediaType ResiliencySettingName FaultDomainRedundancy Size FootprintOnPool StorageEfficiency
------------ --------- --------- --------------------- --------------------- ---- --------------- -----------------
capacity     Unknown   HDD       Parity                1                     0 B             0 B

and

PS C:\Windows\system32> New-Volume -FriendlyName VirtualVolumeDisk -FileSystem ReFS -StoragePoolFriendlyName StoragePool -StorageTierFriendlyNames performance, capacity -StorageTierSizes 1.75TB, 3.64TB
New-Volume : Not Supported

Extended information:
The storage pool does not have sufficient eligible resources for the creation of the specified virtual disk.

Recommended Actions:
- Choose a combination of FaultDomainAwareness and NumberOfDataCopies (or PhysicalDiskRedundancy) supported by the storage pool.
- Choose a value for NumberOfColumns that is less than or equal to the number of physical disks in the storage fault domain
selected for the virtual disk.

Activity ID: {7a04ca9f-0496-002b-b7ca-047a9604d701}
At line:1 char:1
+ New-Volume -FriendlyName VirtualVolumeDisk -FileSystem ReFS -StorageP ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [New-Volume], CimException
    + FullyQualifiedErrorId : StorageWMI 1,Microsoft.Management.Infrastructure.CimCmdlets.InvokeCimMethodCommand,New-Volume

What could be going on here? I thought I'd have a very nice setup to make a mirror accelerated parity volume...? No? 2x SSD + 4x HDD should be supported as far as I understand it :(

Please help :)

Thanks

Windows Server 2019
Windows Server 2019
A Microsoft server operating system that supports enterprise-level management updated to data storage.
3,458 questions
Windows Server Setup
Windows Server Setup
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.Setup: The procedures involved in preparing a software program or application to operate within a computer or mobile device.
241 questions
Windows Server Storage
Windows Server Storage
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.Storage: The hardware and software system used to retain data for subsequent retrieval.
631 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Micro Zoft 1 Reputation point
    2021-02-17T20:59:08.543+00:00

    I continued my exploration here: https://learn.microsoft.com/en-us/answers/questions/277395/storage-spaces-direct-on-stand-alone-windows-serve.html

    I'm still open to answers here too though! :)