I'm trying to read parquet file but for each method I'm getting error. I can read any csv file from S3 using CSV.read, I can read parquet file when a file is locally, but I cannot read it from S3.
using AWS, AWSS3, CSV, DataFrames, Parquet
p = S3Path("s3://mybucket/")
file = joinpath(p, "test.parquet")
DataFrame(read_parquet(file)) #ERROR: MethodError: no method matching Parquet.File(::S3Path{Nothing})
#Directly
DataFrame(read_parquet(s3_get(aws, "mybucket", "test.parquet"))) #ERROR: MethodError: no method matching Parquet.File(::S3Path{Nothing})