I was looking, to no avail, for a way to set `fina...
# general
v
I was looking, to no avail, for a way to set
final_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?
s
has 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.
👍 1
Is there a specific problem you’re encountering? or?
v
no specific problem, just developing my intuition about the Hamilton.
does it mean that the "crawl" happens at the
execute
time?
s
driver.Builder().build()
crawls and constructs the DAG.
.execute()
- figures out the path to walk