1 Answer
- Newest
- Most votes
- Most comments
1
you can try using pyarrow which could change the version
import pyarrow as pa
import pyarrow.parquet as pq
# Read Parquet file (version 2.0)
table = pq.read_table('input.parquet')
# Write Parquet file (version 1.0)
pq.write_table(table, 'output.parquet', version='1.0')
Relevant content
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated 7 months ago