Hi Admin,
Hope you are doing well.
It seems you're dealing with "Offloaded Data Transfer (ODX)" and "copy offload" functionality in your environment.
How ODX Works?
In traditional host-based file transfers, data must be read from the storage through the source server, transferred across the network to the destination server, and then written back to the storage through the destination server.
ODX uses a token-based mechanism: Instead of routing data through the host, a small token representing the data is copied between the source and destination servers. This eliminates the need to copy the actual data through the servers.
- To specifically check the command sets related to ODX, you can use "PowerShell" commands. Here's how:
Run the following command to verify if ODX is supported on your storage array:
Get-PhysicalDisk | Select-Object -Property MediaType, OperationalStatus, OperationalDetails
Look for the **OperationalDetails** field to see if it mentions ODX support.
- ODX is automatically used when supported by the storage array. However, you can't directly force ODX on or off.
Ensure that your storage array and client systems are configured correctly for ODX. Verify that your storage array supports ODX and that the client systems have ODX-capable network adapters.
If everything is set up correctly, ODX should work automatically when you perform file transfers.
Remember to consult your storage vendor's documentation and verify compatibility with ODX. If you encounter any issues, consider reaching out to their support for further assistance.
Best Regards