ironSource / parquetjs

fully asynchronous, pure JavaScript implementation of the Parquet file format
MIT License
349 stars 176 forks source link

result raw is different. #77

Open dogenius01 opened 5 years ago

dogenius01 commented 5 years ago

i added 8100 rows like below...

writer.setRowGroupSize(8000); writer.appendRow({...}); << 8100 times

But, the outcome is not 8100.

{ version: 0, createdBy: 'parquet.js', rowGroups: 17, columns: 31, rows: 128236, ... }

However, when i set RowGroupSize more than 8100(writer.setRowGroupSize(> 8100);) This works fine.

Do you know the reason?