-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request "BufferedOutputStream()" #31
Comments
Do you want to mean that you want the output in a memory buffer, in a raw vector? Or you actually want to stream the output to HTTP? |
Hi @gaborcsardi, Thanks for your prompt response, That's correct, I want the output in a memory buffer, as for example is done with an arrow:
Regards, |
Which is returned as a raw vector. Closes #31.
Now you can do pq <- nanoparquet::write_parquet(mtcars, ":raw:") |
Hi,
I believe this library is very interesting for replacing the use of Arrow in different libraries that perform reading, writing, and serialization of data in Parquet format. However, I think it would be interesting to have an implementation of BufferOutputStream() to avoid the disk write in cases where the goal is to obtain the raw data of the Parquet file.
Regards,
The text was updated successfully, but these errors were encountered: