Visak
03/23/2023, 3:34 PMDan Rammer (hamersaw)
03/23/2023, 3:45 PMfutures.pb
file is just the dynamically compiled workflow from the dynamic task. 22mb is extremely large - can you say a little more about what the underlying workflow from the dynamic looks like?storage.maxDownloadMBs
an example is hereVisak
03/23/2023, 3:56 PM@task
Def double_nums(num: list[int]):
return [item*2 for item in nums]
@dynamic
Def process_tasks(inputs: List[List[ints]]):
seq_tasks = []
for i in range(len(inputs)):
doubles = double_nums(inputs[i])
seq_tasks.append(doubles)
for i in range(len(inputs)-1):
seq_tasks[i] >> seq_tasks[i+1]
Dan Rammer (hamersaw)
03/23/2023, 5:10 PMVisak
03/23/2023, 5:13 PMDan Rammer (hamersaw)
03/23/2023, 5:16 PMVisak
03/23/2023, 5:49 PMSamhita Alla
Dan Rammer (hamersaw)
03/24/2023, 1:29 PM@task
decorator, PodPlugin, etc). The proposal for ArrayNodes would add support for mapping over other entities.Visak
03/24/2023, 3:33 PM