herman_ewert
08/12/2022, 9:48 AM- name: dbt-init
tasks:
- dbt-postgres:seed
- dbt-postgres run-operation create_udfs
When I try to run the job I get Error: Block run-operation not found
. Is there a way to have an arbitrary invoke command as a task in a job like above?herman_ewert
08/12/2022, 10:09 AMtransformers:
- name: dbt-postgres
commands:
create-udfs: run-operation create_udfs
And using the command in the dbt-init job.taylor
08/15/2022, 3:48 PMtasks
list is calling dbt run
and so you can’t pass in arbitrary commands like you can with invoke
_unles_s you’re defining them in a command like you did! 🙂