Microsoft Cluster:卷“ClusterPerformanceHistory”的可用存储容量不足

Microsoft Cluster:卷“ClusterPerformanceHistory”的可用存储容量不足

在文档中找不到任何内容。从几个月前开始,我经常让 ClusterPerformanceHistory 卷(自动创建,净大小约为 12gb)满负荷运行,结果图表停止工作。

似乎没有迹象表明原因,没有事件。健康服务正在运行。似乎没有 powershell 命令来清理它,我所能做的就是停止健康服务,删除卷并重新启动它,以便重新创建它。

有没有更好的方法来维护它?过去 - 这是自动清洁,几个月我都不需要看它。

答案1

回答我自己:这里除了手动创建一个新的卷并使其变大之外,没有什么可做的。

https://blog.mpecsinc.com/2020/02/21/s2d-ashci-extend-the-cluster-performance-history-cluster-disk/有一个用于此的 powershell 脚本和解释...

$ClVDToExtend = "Cluster Virtual Disk (ClusterPerformanceHistory)"
# Virtual Disk Name
$VDToExtend = "ClusterPerformanceHistory"
# Size to Extend to
$VDNewSize = 67GB
$VDPartitionSize = 66.5GB
# Suspend the Disk
Suspend-ClusterResource -Name $ClVDToExtend
# Extend - No Storage Tiers
Get-VirtualDisk $VDtoExtend | Resize-VirtualDisk -Size "$($VDNewSize)" # Final size
# Get its partition
Get-VirtualDisk $VDtoExtend | Get-Disk | Get-Partition
$Partition = Get-VirtualDisk $VDtoExtend | Get-Disk | Get-Partition | Where-Object PartitionNumber -Eq 2
$Partition
# Extend that partition
$Partition | Resize-Partition -Size "$($VDPartitionSize)"
# Resume the Disk
Resume-ClusterResource -Name $ClVDToExtend

MS 基本上在这里弄错了尺寸,因此通常的清理脚本清理得不够;)

相关内容