Is there a way to specify the Parquet Version using AWS data Wrangler

143 views Asked by At

We are writing parquet Files which seem to default to version 1. enter image description here

which teradata NOS complains with a "Native Object Store user error: Unsupported file version"

How can we specify with AWS data wrangler /SDK for Pandas the parquet version towrite.

Not sure what to try... maybe need to find alternative writer?

1

There are 1 answers

0
Anton K On

You can set the version using pyarrow_additional_kwargs:

wr.s3.to_parquet(
    ...
    pyarrow_additional_kwargs={"version":"2.6"}
)