I read this question and answer but it doesn't solve my problem.
What would be the best way of solving the following scenario.
- I have a file storage which receives files from an external app.
- I need to process those files as soon as they arrive.
- This is currently achieved through an Azure Web Job
This is a change request to a solution (Web Job) which is already working based on a TimerTrigger. Basically it's executed every N minutes.
Since I can't change the external program which puts files into storage, my options are limited to the following:
Decrease the time in TimerTrigger so it checks for files every 1 minute (which is sufficient enough in terms of the business requirements)
Mount a share in my main (is this even possible.?) and use FileTrigger
Any suggestions are greatly appreciated.