Skip to main content
Prerequisites:
  • This feature is available with the Paradime Bolt plan.
  • Your API keys must have either Bolt Schedules Admin or Bolt Schedules Metadata Viewer capabilities.
Schedules are identified by slug. The positional argument on paradime bolt run, paradime bolt schedule retry, paradime bolt schedule suspend, and paradime bolt schedule unsuspend is the schedule’s slug — the identifier returned by createBoltSchedule and shown in the Bolt UI.

Trigger a Bolt Run

Using the Paradime CLI, you can trigger a run for a given Bolt schedule slug. CLI command
Options Examples
Trigger a Bolt schedule run, then stream stdout and stderr live for each command as it runs and exit with the final run status. Useful for CI pipelines or local debugging where you want to see exactly what’s happening as it happens.
CLI command
Example output

Retry the latest failed run of a schedule

Using the Paradime CLI, you can retry the latest failed run of a Bolt schedule by name, without needing to know the run ID. The retry resumes from the failed command of the most recent run of the schedule. Infrastructure commands (git clone, dbt deps) are always excluded — they run automatically on every Bolt run. A new Bolt run is created and its run ID is printed. The original failed run is unchanged. CLI command
Options Examples
Retry the latest failed run of a Bolt schedule by name, and block until the new run reaches a terminal state.
CLI command

Retry a Bolt Run

Using the Paradime CLI, you can retry a failed Bolt run by passing its run ID. By default only the failed commands are re-run (using dbt retry when supported); pass --all to re-run every original command. Infrastructure commands (git clone, dbt deps) are always excluded — they run automatically on every Bolt run. A new Bolt run is created and its run ID is printed. The original run is unchanged. CLI command
Options Examples
Retry only the failed commands from a previous Bolt run, and block until the new run reaches a terminal state.
CLI command

Download a Bolt Schedule artifacts

Using the Paradime CLI, you can download the latest artifacts of a given Bolt schedule slug. CLI command
Options Examples
Get Bolt schedule manifest.json from the latest run.
CLI command

Bolt Schedules Suspend

YAML schedules cannot be “suspended” via the CLI.
Using the Paradime CLI, you can programmatically suspend a Bolt Schedule. This will be marked as “Paused”. Schedules in “Paused” state will not run. CLI Command
Examples
CLI Command

Bolt Schedules Unsuspend

YAML schedules cannot be “unsuspend” via the CLI.
Using the Paradime CLI, you can programmatically unsuspand a Bolt Schedule when in a “Paused” state. This is normally used in combination with the Bolt Schedules Suspend CLI command. When a Bolt schedule is “Unsuspended”, runs will resume. CLI Command
Examples
CLI Command
CLI Command

Verify paradime_schedule.yml configuration file

Using the Paradime CLI, you can verify that your paradime_schedules.yml configuration file containting the YAML configured Bolt schedules is correct and free of errors. CLI Command
Options Examples
Verify the paradime_schedules.yml file with the Bolt schedules configurations does not contain errors.
CLI Command