This may well be well documented, but I'm very confused about how to do this (there are many Apache tools).
When I create an SQL table, I create a table using the following commands:
CREATE TABLE table_name(
column1 datatype,
column2 datatype,
column3 datatype,
.....
columnN datatype,
PRIMARY KEY( one or more columns )
);
How to convert this table to parquet? Is this file written to disk? If the source data is several GB, how long does it take to wait?
Is it possible to format the initial source data in the Parquet format?
source
share