Kelvin DeCosta
02/14/2023, 7:10 AMJoshua Grant
02/21/2023, 9:03 PMKelvin DeCosta
03/15/2023, 9:20 AMSequentialTaskRunner
.
I've tried setting cache_result_in_memory
as False
, but that only moves the problem to the Disk Usage.
Flows now crash with OSError: code 28 No space on device
Kelvin DeCosta
03/15/2023, 9:24 AMtask_a.map
-> task_a_states
-> task_a_results
• task_a_results
are used by task_b
.map
, to give task_b_result
• Finally, task_c
takes in task_b_results
and returns None
.Kelvin DeCosta
03/15/2023, 9:25 AMConcurrentTaskRunner
and found that the memory usage builds up even though the the input is already consumed by the end of task_c
, and the new batch must begin.