Skip to content

Tag: airflow

How do I retrieve airflow url link to my latest task log in a DAG?

In individual DAG task, how do I set up the url link with the help from python operator as I am intending to send an url link of the latest log directly to the user whenever errors occur so that they can access to the page directly skipping the step of navigating. Answer You can define a callback function, wh…

How to return False when file exists with FIleSensor

I’m trying to reverse FileSensor(): that is, with It will return True if the file exists. But, how can it return False when the file exists and True when it does not? Answer You could create a PythonSensor that checks for the existence of a file with the logic that you want.