首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >常规(非S2D)存储空间配置中的多弹性卷(镜像加速奇偶)问题

常规(非S2D)存储空间配置中的多弹性卷(镜像加速奇偶)问题
EN

Server Fault用户
提问于 2019-04-05 14:01:58
回答 1查看 483关注 0票数 4

我试图使用WindowsServer2019上的“常规”集群存储空间(而不是S2D)配置多弹性卷(镜像加速奇偶)。值得注意的是,我在Windows 2016上尝试过相同的场景,并得到了相同的结果。而且,不管我是使用集群存储空间还是独立存储空间,结果都是一样的。

My问题是,对于多弹性卷,无论在性能和容量层中使用何种磁盘比例,都无法达到50%以上的存储效率。

<#>Lab配置:

  • 2x超V型虚拟机(OS: Windows 2019 DC)
  • 10×VHD集(前共享VHDx)放在集群共享卷上并附加到两个VM上
  • 我想要创建一个双向镜像(2个磁盘)+单个奇偶MRV (8个磁盘)。每个磁盘的容量为430 is。

Configuration步骤:

代码语言:javascript
复制
#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?

EN

回答 1

Server Fault用户

发布于 2023-02-08 21:24:48

对于地图(镜像-加速-奇偶)坚持下面的指南。我们做了相当多的设置跟随它,它运行得相当好(见我的意见后链接)。

(在存储空间中创建镜像加速奇偶校验卷和存储层,Windows Server 2019)

https://knowledgebase.45drives.com/kb/kb450193-creating-mirror-accelerated-parity-volumes-and-storage-tiers-in-storage-spaces-windows-server-2019/

FYI,这是不支持非S2D配置的一个非常简单的原因:在存储空间(非直接)没有组件“热身”冷数据推送到容量(奇偶)层,它不会回到热(镜像)层,不管你做什么。

票数 1
EN
页面原文内容由Server Fault提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://serverfault.com/questions/961704

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档