Hi, I am Henry and I'd like to help.
It sounds like you encountered an unexpected I/O redirection issue in your Windows Server 2022 Failover Cluster setup . Normally, Cluster Shared Volumes (CSV) allow any node to write directly to the disk, regardless of ownership. However, in some cases, I/O redirection can occur, causing data to be transferred over the network instead of being written directly.
- CSV Disk in Redirected Mode
- Even though CSV disks should allow direct writes, sometimes they enter Redirected Mode, forcing I/O to go through the disk owner.
- You can check the status using PowerShell:
Get-ClusterSharedVolumeState
- If the disk is in Redirected Mode, try restarting the cluster service or manually failing over the disk.
- Failover Cluster Communication Issues
- Since your setup involves iSCSI-mounted shared disks, ensure that all nodes have proper access to the storage array.
- Check network configurations to confirm that the storage NICs are correctly isolated from the company network.
- CSV Coordinator Node Behavior
- Windows Failover Clustering assigns a Coordinator Node for CSV management.
- If the VM is running on a different node than the disk owner, the cluster may temporarily redirect I/O through the disk owner.
- Failing over the role and disk (as you did) likely reset the coordinator node, resolving the issue.
- Check Cluster Logs for Errors
- Run the following command to check for failover cluster errors:
Get-ClusterLog -TimeSpan 5 -Destination C:\ClusterLogs
- Look for any I/O redirection warnings or network-related errors.
- Update Windows Server & Storage Drivers
- Ensure that Windows Server 2022 is fully updated.
- Check for firmware updates on your storage array and NIC drivers.
Let me know if you need further assistance