Reputation: 9
I'm fairly new to the Azure environment. I want to execute an .exe file by passing blob storage as an input and output parameter.
The .exe is a third party. It takes a file as an input and provides another file as an output.
Not sure if this can be achievable using azure ADF.
Upvotes: -1
Views: 742
Reputation: 6856
The easiest way to do this would be to deploy an azure function that includes your exe - gets the input parameters, calls the exe, get the output and write it to blob storage which can then be read from ADF.
It isn't too much work but the key part is getting the exe to run somewhere and a function is the simplest I think.
To draw out the process it would look something like:
Ed
Upvotes: 0