Currently parquet don't reads some specific bytes, why? #3634
Unanswered
Sach1nAgarwal
asked this question in
Q&A
Replies: 1 comment 5 replies
-
Could you provide a code sample of how you are reading the file? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
for this parquet file :-
bigint_tbl.txt
This parquet files has 874 bytes. And has 2 columns, it has 10 rows.
parquet reader will read :-
first last 8 bytes, range 866 to 873 bytes
secondly then metadata, range 273-865 bytes
third then first column, range 4 - 99 bytes
fourth then second column, range 100 - 189 bytes
Start 4 bytes not read because it contains 'PAR1'.
Why 190 to 272 bytes not read ? @tustvold
Beta Was this translation helpful? Give feedback.
All reactions