Reputation: 11
I need to create a schedule trigger (it will run every 15 minutes for 3 hours) in Azure Data Factory, which will pipeline when three different files are created in an Azure Blob storage container. Pipeline execution should only start when all 3 files are created in the blob container. For example, if 3 hours pass and there are only two files in the storage blob, the pipeline will not have to run.
Upvotes: 1
Views: 761
Reputation: 4925
There is no direct way for the event trigger of 3 files as an AND condition in ADF as of now. What you can do is:
Create Event triggers for the files and associate with the pipeline.
So in the case of 3rd event trigger, all files would be found and then the main pipeline would be executed.
Upvotes: 1