itay livni
05/21/2020, 1:38 AMChris White
05/21/2020, 1:41 AM@task
def return_config_object(param):
return some_dictionary
@task
def process_big_data(config):
return pandas_dataframe
In the above case, I might want to see the config in the UI in which case I’ll configure it to use a PrefectResult
type. The pandas dataframe task, on the other hand, I probably want stored in cloud storage (e.g., S3Result
)itay livni
05/21/2020, 1:42 AM