hey! can I use prefect.tasks.aws.s3.S3Upload to upload a parquet file?
k
Kevin Kho
06/30/2021, 6:17 PM
Hi @Yanina Libenson, actually seems like this task can’t do that. It seems this was meant for string/json data. What are you using to produce the parquet? Pandas/Spark/Dask?
Kevin Kho
06/30/2021, 6:20 PM
Because my suggestion might be to use s3fs to write out that parquet so you can just do
<http://dd.to|dd.to>_csv("s3://...")
or something like that. s3fs can make this easier.