Hi :)
To my knowledge, there is no provision for that. If I am wrong, someone please correct me.
However, I would like to come with a suggestion on how to fix this.
My suggestion is to have 2 identical (except the name and id of course) transformations. Scheduled every 30 minutes but starting at different times, such that there is always at least one of them running every 15 minutes.
- For example “transformation_1” will be running at 15:00, 15:30, 16:00 … etc. And “transformation_2” will be running at 15:15, 15:45, 16:15 … etc.
Note: This might lead to having both of them running a the same time (overlapping), so one needs to account for that. Or, before starting a transformation, add a step to check whether the other transformation is currently active. This can be done by querying a status table or a log where the start and end times of each transformation are recorded. But this requires to set up such table in place first.
Let me know what you think. :)
@Andrian Gasper This is helpful I will check the possibility of adding a audit table to know status of transformation.