dex
07/10/2021, 6:36 PMemre
07/10/2021, 8:41 PMdex
07/10/2021, 8:51 PMDatabrickRunNow
implemented, especially it seems that RunNow(job_id=<another task's output>)
is problematic. if I pass a static variable, it works.
to save some headache. I rolled out my own function with databricks job API, works now. will investigate later see if I missed something.Kevin Kho
name_job_map
happens with deferred execution while the Dict access is done immediately when that object does not exist quite yet (it is still a Task class). You can do task(lambda x: x['pipe1'])(name_job_map)
instead of name_job_map['pipe_1']
, and I think that should solve it since we move that to deferred execution alsodex
07/12/2021, 8:04 PM