Custom Operators
DAG-Factory supports custom operators. To leverage, set the path to the custom operator within the operator
key in the configuration file. You can add any additional parameters that the custom operator requires.
...
tasks:
- task_id: begin
operator: airflow.operators.empty.EmptyOperator
- task_id: make_bread_1
operator: customized.operators.breakfast_operators.MakeBreadOperator
bread_type: 'Sourdough'