1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AirflowでweeklyやmonthlyのスケジューリングのDAGが動かない

Posted at

背景

@weekly@monthly のスケジューラーのDAGがなんか動かない

解決法

DAG引数の start_date を確認する。
@weekly の場合は start_date が1週間以上になっているか、 @monthly の場合は1ヶ月以上前になっているかを確認する。なっていないとDAGは動かない。

例えば、 start_date: airflow.utils.dates.days_ago(1) とかにしてると一生動かない。
days_agoを使いたいなら、 @weekly の場合は start_date: airflow.utils.dates.days_ago(7) とかにする必要がある。

参考

Airflow doesn't recognize DAG scheduling

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?