parquetjs icon indicating copy to clipboard operation
parquetjs copied to clipboard

Is it possible to use GZIP compression with your module ?

Open HugoSecteur4 opened this issue 5 years ago • 2 comments

Hi,

First, thank you for your module, nice work ! I wanted to know if it was possible to use GZIP compression for writing parquet data with your module.

If yes, can I have a simple example please ? thank you very much !

HugoSecteur4 avatar Dec 17 '19 10:12 HugoSecteur4

const schema = new parquetjs.ParquetSchema({
	id: { type: 'UINT_64', compression: 'GZIP' },
	name: { type: 'UTF8', compression: 'GZIP' },
	createdAt: { type: 'TIMESTAMP_MILLIS', compression: 'GZIP' },
});

rickyk586 avatar Jul 06 '20 16:07 rickyk586

@rickyk586 Why isn't GZIP listed here?

theloveofcode avatar May 11 '22 00:05 theloveofcode