1
我喜歡__init __()發生在氣流DAG任務給出恰好2個參數1
from airflow import DAG
from datetime import date time
dag_crawl = DAG(
dag_id='test_dag',
start_date= datetime(year=2017, month=3, day=28),)
和任務DAG像
test_task = PythonOperator(
task_id = 'test_task',
python_callable = AClass().a_method,
# to pass self as first argument while calling a_method
op_args = [AClass()],
)
inspite通過自我而調用該方法的 'a_method' (')'
我得到Broken DAG:__init __()只需要2個參數(給出1)。
你能提出一些建議來解決這個問題嗎?
那是愚蠢的我通過自我。這個原因正是你所說的,謝謝。 –