Set up multiple data connection schedules

Hi, all.
I would like to know about the synchronization schedule of data connection.
For example, if you want to execute every 20 minutes from Monday to Saturday, and only once on Sunday at the end of the month, I can not achieve this with a single cron.

Is there a way to set up this case? (Multiple crons can be set up, etc,)

Please help!! Thak you.

Update: edited AND to OR. (+1 to @sandpiper for improving this response.)

In a new schedule, two cron jobs can be specified using “When multiple time or event conditions are met”. See below. Cron jobs can be specified via Time → Run every: Advanced. The following cron jobs can sync every 20 minutes, Monday to Saturday, and at 12 PM on Sundays:

*/20 * * * 1-6
0 12 * * 0

@Joel’s example generally looks good, but I believe that the conditions should be combined with an “OR” condition, not an “AND” condition as in the screenshot.

1 Like

Thank you for your answer, @Joel san.

I understand that data linage can be used to schedule data connection.

Thank you, have a nice weekend.

1 Like