hey! can I use prefect.tasks.aws.s3.S3Upload to up...
# ask-community
y
hey! can I use prefect.tasks.aws.s3.S3Upload to upload a parquet file?
k
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?
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.
y
yes, i’ll just use s3fs. thank you!