Use the CSV state and the related cluster/system events to confirm both the redirection mode and the reason, then inspect storage and filter-driver changes around the same time.
- Check the CSV state per node.
On a cluster node, run
Get-ClusterSharedVolumeState. In Windows Server 2012 R2 and later, this shows whether I/O is direct, redirected, or unavailable on a per-node basis. If the CSV is in redirected I/O mode, it also shows the reason. - Confirm whether the redirection is block redirection.
CSV uses:
- File system redirection for cases such as CSV snapshots or when a CSV is manually placed in redirected mode.
- Block redirection when storage connectivity is lost to a volume. If the volume is specifically in Block Redirected Mode, that points to a storage-path or storage-access problem rather than a normal snapshot-related file-system redirection scenario.
- Correlate with cluster and storage events. Review System and Application logs for CSV-related events around the time the mode changed. Relevant symptoms include Event ID 5120, 5142, and 153 with messages such as: "All I/O will temporarily be queued until a path to the volume is reestablished." For Event ID 5120 guidance, the documented meaning is that communication between a cluster node and a CSV was interrupted. If the interruption persists, review other System or Application events for communication problems between the node and the volume.
- Check whether the volume is still online from the cluster perspective.
In Failover Cluster Manager, inspect the affected volume status. If needed, verify with
Get-ClusterSharedVolume. This confirms whether the issue is only redirection or whether the CSV is also transitioning offline/unavailable. - Investigate the most common root-cause areas that force CSV into redirected access.
The documented causes include:
- Network bottleneck or misconfiguration, including network adapter teaming mismatch. Validate teaming consistency on all nodes with
Get-NetLbfoTeam. - Network adapter resource exhaustion, including Event ID 252 warnings.
- Physical disk or HBA failure. Review disk health with
Get-PhysicalDisk | Format-Tableand check for Event ID 157. - Switch or cable faults in the storage fabric.
- Incorrect or corrupt MPIO configuration. Confirm all paths are online with
mpclaim -s -d. - Outdated or incorrect storage drivers, SAN firmware, DSM/MPIO software.
- Multiple antivirus or unsupported filter drivers. Inspect loaded filter drivers with
fltmc.
- Network bottleneck or misconfiguration, including network adapter teaming mismatch. Validate teaming consistency on all nodes with
- Focus on the recent storage filter driver update. Since the issue started after a storage filter driver update, compare the timing of that update with the first redirected-mode events. The documented guidance specifically calls out unsupported filter drivers as a common cause area. If multiple antivirus products or unsupported filter drivers are present, remove the unsupported ones and keep only one antivirus product.
- Validate cluster-network behavior during redirection. Increased traffic on the CSV interconnect is expected during redirected I/O because disk I/O is sent over a cluster network to the coordinator node. CSV traffic can also stream across multiple cluster networks through SMB Multichannel and SMB Direct. This confirms the symptom, but not the cause.
- Check platform and formatting considerations. If the CSV is ReFS on SAN-attached disks, Direct I/O is not used. The documented guidance states that CSVs preformatted with ReFS on top of SANs will not use Direct I/O, regardless of other Direct I/O requirements. For SAN-attached CSV disks, NTFS is required before converting to CSV to leverage Direct I/O. If the affected volume is ReFS on a SAN, that behavior must be ruled out before attributing the issue to a driver.
- Update the full storage and network stack. Make sure the affected systems have the latest network drivers, storage drivers, firmware, and applicable Microsoft updates/hotfixes installed.
The practical way to confirm the root cause is:
- Use
Get-ClusterSharedVolumeStateto capture the CSV redirection reason. - Correlate that timestamp with Event IDs 5120/5142/153 and any Event ID 252/157 entries.
- Inspect
fltmcoutput and recent filter-driver changes. - Validate MPIO paths, HBA/disk health, teaming consistency, and switch/cable health.
- If the volume is ReFS on SAN-attached storage, account for the documented Direct I/O limitation first.