I have a tumbling window trigger trg-Daily that has a start date boundary at 12:00AM and it executes once every 24 hours (frequency is Hour and interval is 24). So basically it executes a daily job. Now I a pipeline that I want to execute once a month -- so basically I want to create another tumbling window trigger trg-Monthly that will depend on the daily trigger trg-Daily in such a way that it should execute when all the days in a given month are processed. How to define this? Specifically I would like to know what should be the following values of the trigger trg-Monthly to make it happen?
- frequency
- interval
- window Size (for dependsOn section)
- offset ( for dependsOn section)
This used to happen easily out of the box in ADFv1 , not sure how to implement that in ADFv2.