Schedule Configurations
Last updated
Was this helpful?
Last updated
Was this helpful?
After creating a Bolt Schedule, you can view and modify it to suit your evolving needs. This section covers how to view and edit Bolt Schedules via the UI and highlights essential actions for managing your schedules.
The Bolt home page provides a summarized list of all the schedules configured in your Paradime workspace.
Here you can view preview details of each schedule, including:
Name
Name of the schedule
"production run"
Status
Current run status of the schedule
Success
, Error
, No Runs
, Running
Owner
The owner of the schedule (if configured)
john@acme.com
Cron Description
The time of day (UTC time) that the schedule runs, defined by cron configuration.
OFF
, At 00:00, every day (UTC)
Cron Configuration
The cron syntax of the scheduled run.
OFF
, @daily
, 0 8 * * *
Last Run
Date and time of when the schedule was last triggered
October 31, 2024 at 5:00 PM PDT
Next Run
Date and time the scheduler will trigger next
November 1, 2024 at 5:00 PM PDT
Trigger Type
How your schedule is triggered
On Schedule
, On run completion,
On completion Configuration
Details on how your On Run Completion
is configured (If applicable)
schedule medium in workspace max on status passed
Navigate to the Bolt UI and select the schedule you wish to edit.
Click âEditâ to access the schedule's configuration settings.
Update any necessary schedule parameters, including Schedule Type, Commands, Trigger Type, and Notifications.
Deploy your changes to save the updated configuration.
Bolt offers four trigger types for schedules:
In addition to automatic executions, you can trigger manual runs for Bolt Schedules as needed:
Navigate to the Bolt UI and select the specific schedule.
Click the Run button in the top right corner to initiate a new run.
While the schedule is active, click the Cancel button next to the currently running schedule.
To temporarily disable a schedule:
Click on the schedule name to view its details.
Click Edit to begin modifying the schedule.
At the top of the editor, toggle the switch off to pause the schedule.
Bolt schedules can be either Active or Archived. Active schedules can be found in the main schedule list, while archived schedules are accessible via the "Active Schedules" dropdown menu.
A schedule becomes archived when:
It is removed from the paradime_schedules.yml
file
It is deleted through the Bolt User Interface
Its name is changed (the schedule with the old name becomes archived)
To restore an archived schedule:
Schedule created via UI: Access the archived schedule, click Edit, and deploy again
Paradime offers multiple ways to trigger and manage Bolt Schedules. You can choose the method that best suits your workflow, from version-controlled YAML configurations to orchestration with Airflow or integration with custom scripts using the Python SDK.
To access the code for each method:
Click on the Bolt schedule name to view the schedule details.
Click Edit.
Click â</> Codeâ to view the YAML, Airflow, and Python code options.
Use the tabs below to explore specific code examples for each option:
Use this list to view all schedule names parsed, including any .
Alternatively, you can modify schedules directly in the paradime_schedules.yml
file within your dbtâ˘ď¸ project. For details, refer to
Schedules created via : Add the schedule back to paradime_schedules.yml
using its original name
To use a production schedule during development in the IDE and schema for upstream tables, select the desired schedule name from the dropdown menu.
Learn more about how Defer to Production works in our learning guide,