存储空间写入缓存未禁用

存储空间写入缓存未禁用

我将此问题发布到 TechNet 论坛,但一直没有得到答复,所以希望这里有人能指出我遗漏了什么。我正在尝试在 Windows Server 2019 中创建存储空间镜像加速奇偶校验驱动器,但似乎无法禁用 RAM 中的写入缓冲区。当我将文件复制到它时,它会使 RAM 使用率飙升,然后刷新到磁盘。我为这个池使用了 2 个 SSD 和 3 个 HDD,下面是我用来创建驱动器的命令。如果有人能指出这个缺陷,我将不胜感激。

New-StoragePool -StoragePoolFriendlyName "MyPool" -StorageSubSystemFriendlyName (Get-StorageSubSystem).FriendlyName -PhysicalDisks (Get-PhysicalDisk -CanPool $true) -FaultDomainAwarenessDefault PhysicalDisk Set-StoragePool -FriendlyName "MyPool" -IsPowerProtected $true Get-Storagepool MyPool | Set-ResiliencySetting -Name Mirror -NumberOfColumnsDefault 1 Get-Storagepool MyPool | Set-ResiliencySetting -Name Parity -NumberOfColumnsDefault 3 New-StorageTier -StoragePoolFriendlyName MyPool -FriendlyName SSDTier -MediaType SSD -ResiliencySettingName Mirror -NumberOfColumns 1 -PhysicalDiskRedundancy 1 -FaultDomainAwareness PhysicalDisk New-StorageTier -StoragePoolFriendlyName MyPool -FriendlyName HDDTier -MediaType HDD -ResiliencySettingName Parity -NumberOfColumns 3 -PhysicalDiskRedundancy 1 -FaultDomainAwareness PhysicalDisk -Interleave 64KB New-Volume -StoragePoolFriendlyName MyPool -FriendlyName MyMedia -FileSystem ReFS -WriteCacheSize 0GB -DriveLetter G -StorageTierFriendlyName SSDTier,HDDTier -StorageTierSizes 50GB,3.5TB

相关内容