1

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 Answers1

0

You can set the version using pyarrow_additional_kwargs:

wr.s3.to_parquet(
    ...
    pyarrow_additional_kwargs={"version":"2.6"}
)
Anton K
  • 91
  • 1
  • 8