私は初めてAirflow
です。私はチュートリアルに従っており、次のコードを書いています。
from airflow import DAG
from airflow.operators.python_operator import PythonOperator
from datetime import datetime, timedelta
from models.correctness_prediction import CorrectnessPrediction
default_args = {
'owner': 'abc',
'depends_on_past': False,
'start_date': datetime.now(),
'email': ['abc@xyz.com'],
'email_on_failure': False,
'email_on_retry': False,
'retries': 1,
'retry_delay': timedelta(minutes=5)
}
def correctness_prediction(arg):
CorrectnessPrediction.train()
dag = DAG('daily_processing', default_args=default_args)
task_1 = PythonOperator(
task_id='print_the_context',
provide_context=True,
python_callable=correctness_prediction,
dag=dag)
スクリプトを実行してもエラーは表示されませんが、チェックインするとdags
、[メニュー] -> [ DAGWeb-UI
]の下に表示されません
しかし、メニュー->ブラウズ->ジョブjob
の下にスケジュールが表示されます。
$AIRFLOW_HOME/dags にも何も表示されません。これだけでいいのでしょうか?誰かが理由を説明できますか?