How to get the file size of the parquet file written by ArrowWriter
?
#4224
Answered
by
tustvold
RinChanNOWWW
asked this question in
Q&A
-
FYI, |
Beta Was this translation helpful? Give feedback.
Answered by
tustvold
May 16, 2023
Replies: 1 comment 6 replies
-
SerializedFileWriter tracks the number of bytes written, and so could definitely expose this. I guess my question would be why not just obtain this from the For example, |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
RinChanNOWWW
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
SerializedFileWriter tracks the number of bytes written, and so could definitely expose this. I guess my question would be why not just obtain this from the
W: Write
itself?For example,
writer.into_inner().len()
?