Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I get execution_date in dag?? the outside of operator?

How can I get an execution_date parameter in outside of dag?

execution_min = "{{execution_date.strftime('%M') }}"

if execution_min == '00':
    logging.info('**** ' + "YES, It's 00")
    final_task = DummyOperator(
        task_id='task_y00',
        ...
        dag=dag
    )
else:
    logging.info('**** ' + "NOPE!!!")
    final_task = DummyOperator(
        task_id='task_n00',
        ...
        dag=dag
    )

I want to set a task stream with dynamically with execution_date (especially minute)

But Jinja template won't work with template_fields = ['execution_date']

Are there any solutions to get the execution parameter from outside of operator (= in the DAG itself) ???

like image 792
robinhur Avatar asked Oct 18 '17 10:10

robinhur


1 Answers

Execution date is specific to a DagRun. DagRun information is not available in a DAG definition file (it is available in an Operator's template fields because these get parsed at run-time via Jinja). DAG definition files are parsed frequently by the scheduler, webserver and workers even when the dag isn't running. This is why outside of an actual DagRun there is no access to things like execution date.

Furthermore there is no way to add/subtract tasks to a DAG run at runtime. You can have dynamic dags whose structure is decided before they run (ie. parse a file into a DAG structure), but you can't add tasks or decide what a DAG looks like while it's running.

like image 52
jhnclvr Avatar answered Oct 22 '22 01:10

jhnclvr