Op jobs
note
Looking to materialize asset definitions instead of ops? Check out the asset jobs documentation.
Jobs are the main unit of execution and monitoring in Dagster. An op job executes a graph of ops.
Op jobs can be launched in a few different ways:
- Manually from the Dagster UI
- At fixed intervals, by schedules
- When external changes occur, using sensors
Relevant APIs
| Name | Description |
|---|---|
@dg.job | The decorator used to define a job. |
JobDefinition | A job definition. Jobs are the main unit of execution and monitoring in Dagster. Typically constructed using the @dg.job decorator. |
Creating op jobs
Op jobs can be created: