create cleaned layer
This commit is contained in:
@@ -11,6 +11,11 @@ from scripts.bigquery_raw_layer import (
|
||||
run_staging_integration,
|
||||
)
|
||||
|
||||
from scripts.bigquery_cleaned_layer import (
|
||||
run_cleaned_integration,
|
||||
)
|
||||
|
||||
|
||||
with DAG(
|
||||
dag_id = "etl_food_security_bigquery",
|
||||
start_date = datetime(2026, 3, 1),
|
||||
@@ -43,5 +48,12 @@ with DAG(
|
||||
task_id = "staging_integration_to_silver",
|
||||
python_callable = run_staging_integration
|
||||
)
|
||||
|
||||
task_cleaned = PythonOperator(
|
||||
task_id = "cleaned_integration_to_silver",
|
||||
python_callable = run_cleaned_integration
|
||||
)
|
||||
|
||||
|
||||
|
||||
task_verify >> task_fao >> task_worldbank >> task_unicef >> task_staging
|
||||
task_verify >> task_fao >> task_worldbank >> task_unicef >> task_staging >> task_cleaned
|
||||
Reference in New Issue
Block a user