test connect

This commit is contained in:
Debby
2026-03-07 17:17:27 +07:00
parent ceccf69518
commit e63d8ba69a
2 changed files with 54 additions and 0 deletions

17
dags/trial.py Normal file
View File

@@ -0,0 +1,17 @@
from airflow import DAG
from airflow.operators.python import PythonOperator
from datetime import datetime
from scripts.test_fao_load import run_fao_test
with DAG(
dag_id="etl_fao_bigquery",
start_date=datetime(2026, 3, 3),
schedule_interval="@daily",
catchup=False
) as dag:
task_load_fao = PythonOperator(
task_id="load_fao_to_bigquery",
python_callable=run_fao_test
)