Thanks for using MS Q&A platform and posting your query
The issue you’re experiencing seems to be related to the handling of non-breaking space characters in file names by Azure Data Factory (ADF). When ADF encounters a non-breaking space in a file name, it might not recognize it correctly, which could lead to errors during the copy operation.
Here are a few suggestions that might help resolve this issue:
- File Name Encoding: Ensure that the file names are properly encoded. Non-breaking spaces are often encoded as
%C2%A0
in URLs. If possible, try to avoid using non-breaking spaces in file names. - Filter Activity: Use a filter activity to exclude files with non-breaking space characters in their names1. This can prevent the copy activity from attempting to copy these files, thereby avoiding the error.
- Fault Tolerance: Consider adding fault tolerance to your copy activity2. This allows the copy activity to skip files that it cannot process, such as those with non-breaking space characters in their names.
- Check SFTP Server: There might be issues with the SFTP server, such as insufficient storage. Check the server and try optimizing the storage.
Remember, it’s always a good practice to follow naming conventions that avoid special characters in file names. This can help prevent issues like the one you’re experiencing
Hope this helps. Do let us know if you any further queries.