Framework
scheduled_jobs
scheduled_jobs
defines functions that are executed on a regular schedule. It specifies the functions at the end of the data pipeline and sets up the schedule for regular execution.
scheduled_jobs
Parameters
Specify the schedule in cron format.
Specify whether to enable the scheduled execution. Only enabled schedules will be executed when deployed to the cloud.
Specify the timezone for the scheduled execution in TZ format.
Refer to this link for TZ format.
Specify the variables to be passed during scheduled execution.
The variables passed here can be accessed within the function as Jinja variables in SQL or as context.vars["key"]
in Python.