Код: Выделить всё
from airflow import DAG
from airflow.operators.python_operator import PythonOperator
from datetime import datetime, timedelta
dag = DAG(
'my_dat',
start_date=datetime(2017, 1, 1),
catchup=False,
schedule_interval=timedelta(days=1)
)
def run_query():
# read the query
query = open('sql/queryfile.sql')
# run the query
execute(query)
tas = PythonOperator(
task_id='run_query', dag=dag, python_callable=run_query)
Код: Выделить всё
IOError: [Errno 2] No such file or directory: 'sql/queryfile.sql'
Подробнее здесь: https://stackoverflow.com/questions/429 ... irflow-dag
Мобильная версия