Windows-Cluster
Microsoft Cluster:卷“ClusterPerformanceHistory”的可用儲存容量不足
在文件中找不到任何內容。從幾個月前開始,我經常讓卷 ClusterPerformanceHistory(自動創建,大約 12gb 的淨大小)執行滿,結果圖表停止工作。
似乎沒有跡象表明為什麼,沒有事件。執行狀況服務正在執行。似乎沒有 powershell 命令來清理它,我所能做的就是停止執行狀況服務,核對卷並重新啟動它,以便重新創建它。
有沒有更好的方法來保持這個?過去 - 這是自動清潔,我幾個月都不需要看它。
回答我自己:除了手動製作一個新卷並使其更大之外,這裡沒有什麼可做的。
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基本上在這裡做錯了大小,所以通常的清理腳本清理得不夠;)