1

We need to start our pipeline once a (file or multiple file) is dropped in fileshare.This trigger will run first line and once executed successfully ,needs to run second and then third sequentially. Any of Pipeline fails the process stops .

We have to achieve this using adf v2 and file Share .We don't want any intermediate storage location. Please respond as soon as possible .

1 Answers1

2

Based on my knowledge it is not possible as triggers on File share is not supported in ADF, Azure function or logic app.

similar threads: Azure trigger function for file share

https://learn.microsoft.com/en-us/answers/questions/114300/how-to-set-up-automatice-trigger-for-azure-file-sh.html

Can Azure Event Grid listen to changes in Azure File Shares?

The only way would be to periodically search for the file based on scheduled trigger .

Nandan
  • 3,939
  • 2
  • 8
  • 21
  • thanks .My file availability is not fixed .Can we use any triggers in ADF to manage such situations. – user10773903 Apr 07 '21 at 14:08
  • Hey ,you can use a schedule trigger and schedule it after every 15 min or 5 min etc as per your need.this is the only trigger which would help you in your case based on my knowledge. event trigger won't work as file share is not supported – Nandan Apr 07 '21 at 14:15
  • If my files are on ADLS.Can I use any triggers which can be run sequetially? – user10773903 Apr 07 '21 at 14:57