Jacob Warwick
11/17/2021, 5:35 PMNate
11/17/2021, 5:48 PMJacob Warwick
11/17/2021, 5:55 PMJacob Warwick
11/17/2021, 5:57 PMKevin Kho
@task()
def task_1():
my_result = S3Result(bucket="omlds-prefect", location="forecast.csv", serializer=PandasSerializer())
res = my_result.write(df)
return res.location
@task()
def task_2(location):
my_result = S3Result(bucket="omlds-prefect", location=location, serializer=PandasSerializer())
df = my_result.read(df)
...
return modified_df
Kevin Kho
Jacob Warwick
11/17/2021, 6:18 PMKevin Kho
Kevin Kho
Jacob Warwick
11/17/2021, 6:48 PMAnna Geller