You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2020/03/29 15:22:11 UTC

[GitHub] [airflow] dimberman opened a new issue #7959: SLA notification does not work for manually triggered DAGs

dimberman opened a new issue #7959: SLA notification does not work for manually triggered DAGs 
URL: https://github.com/apache/airflow/issues/7959
 
 
   
   
   **Apache Airflow version**: None
   
   Ticket was created 07/Oct/16 21:40
   
   **Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
   
   **Environment**:
   
   - **Cloud provider or hardware configuration**:
   - **OS** (e.g. from /etc/os-release):
   - **Kernel** (e.g. `uname -a`):
   - **Install tools**:
   - **Others**:
   **What happened**:
   
   No SLA notifcation emails are sent for manually triggered DAGs.
   
   For example, if you have ...
   
   dag = DAG(
       'my_dag',
       start_date=datetime(2015, 1, 1),
       schedule_interval=None,
       default_args=args)
   
   t = PythonOperator(
           task_id='t2',
           python_callable=<callable>,
           sla=timedelta(seconds=60),
           dag=dag)
   
   
   
   There is no email sent if the task takes more than the SLA time.
   
   The code for DAG.following_schedule does not seem to handle the case of scheduler_interval=None ...
   
      def following_schedule(self, dttm):
           if isinstance(self._schedule_interval, six.string_types):
               cron = croniter(self._schedule_interval, dttm)
               return cron.get_next(datetime)
           elif isinstance(self._schedule_interval, timedelta):
               return dttm + self._schedule_interval
   
   
   
   When the DAG has schedule_interval=None, the following exception is raised ...
   
   File "<...>/lib/python2.7/site-packages/airflow/jobs.py", line 284, in manage_slas
        while dttm < datetime.now():
   TypeError: can't compare datetime.datetime to NoneType
   
   **What you expected to happen**:
   
   
   **How to reproduce it**:
   
   
   **Anything else we need to know**:
   
   Moved here from https://issues.apache.org/jira/browse/AIRFLOW-557
       

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services