Python Forum
Parquet format conversion problem - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Parquet format conversion problem (/thread-22596.html)



Parquet format conversion problem - Bilhardas - Nov-19-2019

Hello guys

I need help with parquet conversion:

Given the attached CSV file named "parquet-test.csv", i need to convert it into parquet format.

The CSV table contains the following data type structure:

ID: integer

name: string

insert_timestamp_utc: timestamp

value: double

Need to build a python script that is able to convert the file provided into parquet format, with the following rules:

- The input file is immutable. You cannot edit it.

- The output file must respect the data type structure described above

Would be nice if someone could help me on this

Thanks


RE: Parquet format conversion problem - baquerik - Nov-19-2019

1.- There is no attached CSV file.
2.- Please, provide your code. What have you tried? Where did it go wrong?