1 réponse
- Le plus récent
- Le plus de votes
- La plupart des commentaires
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')
Contenus pertinents
- demandé il y a un an
- demandé il y a 2 ans
- demandé il y a un an
- AWS OFFICIELA mis à jour il y a 4 ans
- AWS OFFICIELA mis à jour il y a 7 mois
