我试图使用WindowsServer2019上的“常规”集群存储空间(而不是S2D)配置多弹性卷(镜像加速奇偶)。值得注意的是,我在Windows 2016上尝试过相同的场景,并得到了相同的结果。而且,不管我是使用集群存储空间还是独立存储空间,结果都是一样的。
My问题是,对于多弹性卷,无论在性能和容量层中使用何种磁盘比例,都无法达到50%以上的存储效率。
<#>Lab配置:
Configuration步骤:
#Creating new Pool
Get-PhysicalDisk -CanPool $true
New-StoragePool –FriendlyName MainPool –StorageSubsystemFriendlyName "Clustered Windows Storage*" –PhysicalDisks (Get-PhysicalDisk -CanPool $True)
#Setting up media types for tiering
Get-StoragePool -IsPrimordial $true | Get-PhysicalDisk -CanPool $true |Set-PhysicalDisk -MediaType HDD
Get-StoragePool -IsPrimordial $true | Get-PhysicalDisk -CanPool $true | select -skip 8 |Set-PhysicalDisk -MediaType SSD
#Configuring Capacity tier
New-StorageTier -MediaType HDD -StoragePoolFriendlyName MainPool -FriendlyName CapacityTier -ResiliencySettingName Parity -FaultDomainAwareness PhysicalDisk -PhysicalDiskRedundancy 1 -NumberOfColumns 8 -Interleave 65536
$CapacityTier = Get-StorageTier -FriendlyName CapacityTier
#Configuring Perfromance tier
New-StorageTier -MediaType SSD -StoragePoolFriendlyName MainPool -FriendlyName PerfromanceTier -ResiliencySettingName Mirror -FaultDomainAwareness PhysicalDisk -PhysicalDiskRedundancy 1 -NumberOfDataCopies 2 -NumberOfColumns 1 -Interleave 65536
$PerfromanceTier = Get-StorageTier -FriendlyName PerfromanceTier
#Creating Multi-Resilient Volume
New-Volume -StoragePoolFriendlyName MainPool -FriendlyName MRVolume -FileSystem ReFS -AccessPath "X:" -ProvisioningType Fixed -AllocationUnitSize 4KB -StorageTierFriendlyName PerfromanceTier, CapacityTier -StorageTierSizes 400GB, 600GB<#>结果:
Get-StorageTier报告说,性能层和容量层都将其弹性类型配置为“镜像”,并且都具有50%的存储效率。我显然期望容量(均等)层有超过50%的效率。
非S2D配置中的多弹性体积(MRVolume)是否允许生产?
为什么具有弹性类型=“奇偶”类型的容量层将自己报告为“镜像”?
是否有一种“适当”的方法来创建效率超过50%的mirror+parity MRVolume?
发布于 2023-02-08 21:24:48
对于地图(镜像-加速-奇偶)坚持下面的指南。我们做了相当多的设置跟随它,它运行得相当好(见我的意见后链接)。
(在存储空间中创建镜像加速奇偶校验卷和存储层,Windows Server 2019)
FYI,这是不支持非S2D配置的一个非常简单的原因:在存储空间(非直接)没有组件“热身”冷数据推送到容量(奇偶)层,它不会回到热(镜像)层,不管你做什么。
https://serverfault.com/questions/961704
复制相似问题