[ 
https://issues.apache.org/jira/browse/AIRFLOW-89?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15278341#comment-15278341
 ] 

Chris Riccomini commented on AIRFLOW-89:
----------------------------------------

{quote}
The schedule_interval=timedelta(1) should instead be 
schedule_interval=timedelta(days=1)), I believe.
{quote}

They are the same:

{code:python}
>>> timedelta(1)
datetime.timedelta(1)
>>> timedelta(days=1)
datetime.timedelta(1)
{code}

{quote}
but then that template has a 5 minute time window instead
{quote}

That is the retry_delay, not the schedule_interval:

{code}
    'retry_delay': timedelta(minutes=5),
{code}

It's defining how long to wait to retry when a failure occurs.

> Documentation error on Tutorial site
> ------------------------------------
>
>                 Key: AIRFLOW-89
>                 URL: https://issues.apache.org/jira/browse/AIRFLOW-89
>             Project: Apache Airflow
>          Issue Type: Bug
>          Components: docs
>         Environment: 
> https://pythonhosted.org/airflow/tutorial.html#instantiate-a-dag
>            Reporter: Dimitri Vasdekis
>            Priority: Minor
>
> Commentary says: We also pass the default argument dictionary that we just 
> defined and define a schedule_interval of 1 day for the DAG.
> But then the code sample is:
> dag = DAG(
>     'tutorial', default_args=default_args, schedule_interval=timedelta(1))
> The schedule_interval=timedelta(1) should instead be 
> schedule_interval=timedelta(days=1)), I believe.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to