Thanks for reaching out to Microsoft Q&A.
It looks like you’re encountering an issue with the SFTP protocol version compatibility in Azure Data Factory (ADF).
steps you can take to troubleshoot and resolve this issue:
- Check SFTP Server Configuration: Ensure that the SFTP server supports the required protocol version. Since ADF supports SFTP protocol version 3, you might need to configure the SFTP server to use this version.
- Enable UTF-8 Support: The error message indicates a lack of UTF-8 support. You might need to enable UTF-8 support on the SFTP server. This can typically be done by configuring the server settings to include
--enable-nls
. - Update ADF Linked Service: Verify the configuration of your ADF linked service. Ensure that all settings, including authentication and port configuration, are correctly specified. You might also want to check if there have been any recent changes to the SFTP server settings that could affect the connection.
Refer to the Azure Data Factory documentation for detailed guidance on configuring SFTP connections and troubleshooting .