Mubin Khalid created AIRFLOW-1147:
-------------------------------------
Summary: airflow scheduler not working
Key: AIRFLOW-1147
URL: https://issues.apache.org/jira/browse/AIRFLOW-1147
Project: Apache Airflow
Issue Type: Bug
Components: scheduler
Affects Versions: Airflow 1.8
Environment: CentOS running on 128 GB ram
Reporter: Mubin Khalid
Priority: Critical
I've created some `DAG`s, and I tried to put it on scheduler. I want to run all
the tasks in the DAG after exact 24 hours.
I tried to do something like this.
DEFAULT_ARGS = {
'owner' : 'mubin',
'depends_on_past' : False,
'start_date' : datetime(2017, 4, 24, 14, 30),
'retries' : 5,
'retry_delay' : timedetla(1),
}
SCHEDULE_INTERVAL = timedelta(minutes=1440)
# SCHEDULE_INTERVAL = timedelta(hours=24)
# SCHEDULE_INTERVAL = timedelta(days=1)
dag = DAG('StandardizeDataDag',
default_args = DEFAULT_ARGS,
schedule_interval = SCHEDULE_INTERVAL
)
I tried to put different intervals, but not any working. However if I try to
reset db `airflow resetdb -y` and then run `airflow initdb`, it works for once.
then after that, scheduler isn't able to run it.
PS. `airflow scheduler` is executed via `root`
can anybody point me what I'm doing wrong?
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)