fix(dag): remove invalid --select flag from meltano run
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 13s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 54s
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Successful in 1m12s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 13s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 54s
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Successful in 1m12s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s
meltano run does not support --select; the full tap-uk-ees run already includes EESKs2NationalStream so no separate task is needed. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -133,15 +133,11 @@ with DAG(
|
|||||||
) as annual_ees_dag:
|
) as annual_ees_dag:
|
||||||
|
|
||||||
with TaskGroup("extract_ees") as extract_ees_group:
|
with TaskGroup("extract_ees") as extract_ees_group:
|
||||||
|
# Runs all tap-uk-ees streams, including the new ees_ks2_national stream
|
||||||
extract_ees = BashOperator(
|
extract_ees = BashOperator(
|
||||||
task_id="extract_ees",
|
task_id="extract_ees",
|
||||||
bash_command=f"cd {PIPELINE_DIR} && {MELTANO_BIN} run tap-uk-ees target-postgres",
|
bash_command=f"cd {PIPELINE_DIR} && {MELTANO_BIN} run tap-uk-ees target-postgres",
|
||||||
)
|
)
|
||||||
# KS2 national headlines run in parallel — small single-CSV download
|
|
||||||
extract_ks2_national = BashOperator(
|
|
||||||
task_id="extract_ks2_national",
|
|
||||||
bash_command=f"cd {PIPELINE_DIR} && {MELTANO_BIN} run tap-uk-ees target-postgres --select ees_ks2_national",
|
|
||||||
)
|
|
||||||
|
|
||||||
dbt_build_ees = BashOperator(
|
dbt_build_ees = BashOperator(
|
||||||
task_id="dbt_build",
|
task_id="dbt_build",
|
||||||
|
|||||||
Reference in New Issue
Block a user