I am creating an Azure Data factory to copy binary files from the Google Cloud Storage bucket to the Azure Blob Storage container. The files need to be copied without any compression. I want to specify fault tolerance settings to skip files with invalid names and skip forbidden files but those options are disabled when I create the copy pipeline using Azure portal.
Source and Sink configurations are as follows
What are the ways,if I want to use such fault tolerance configurations -
"skipErrorFile": {
"fileMissing": true,
"fileForbidden": true,
"dataInconsistency": true,
"invalidFileName": true
},
Tried editing the JSON code representation of the factory, the changes don't reflect after publishing. Experts, please help.