1 個回答
- 最新
- 最多得票
- 最多評論
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')
相關內容
- 已提問 10 個月前
- 已提問 3 年前
