Vadim Ogranovich
07/29/2024, 7:08 PMfinal_vars
in the Builder, something like driver.Builder().with_final_vars(...)...
.
I understand I can achieve the same effect via dr.execute(final_vars=final_vars)
, however providing final_vars at the build stage has a potential of greatly reducing the build time, or doesn't it? What am I missing?Stefan Krawczyk
07/29/2024, 7:11 PMhas a potential of greatly reducing the build time, or doesn’t it?It would not. You kind of need to crawl all the modules to know what the graph is.
Stefan Krawczyk
07/29/2024, 7:11 PMVadim Ogranovich
07/29/2024, 7:13 PMVadim Ogranovich
07/29/2024, 7:19 PMexecute
time?Stefan Krawczyk
07/29/2024, 7:25 PMdriver.Builder().build()
crawls and constructs the DAG.
.execute()
- figures out the path to walk