Tarcisio
07/27/2020, 6:01 PMKyle Moon-Wright
07/27/2020, 6:07 PMTarcisio
07/27/2020, 6:20 PMKyle Moon-Wright
07/27/2020, 6:31 PMResult
you've added to your task and your flow should still run in case that's your concern. However, if you'd like to persist the task results without filling up your local storage, I'd recommend storing those using a Result subclass with a cloud storage provider.Tarcisio
07/27/2020, 6:36 PMChris White
07/27/2020, 7:08 PMFlow(result=Result())
with the base Result
class; this configuration will prevent anything from being stored
- set checkpoint=False
on each individual task; this will prevent data from being written regardless of the result typeMarvin
07/27/2020, 7:09 PM