-
Notifications
You must be signed in to change notification settings - Fork 494
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
Textual representation of the export parquet output file #4056
Comments
Isn't that just CSV ? Perhaps just wrap it in base64 encoding? |
Apache Parquet format is not human-readable and binary-based (instead of text-based) by definition, so there's no way to create a textual output.
So, we should use other formats to create a readable file. Even wrapping the
The same thing by doing
The only usable way seems to be using a The batch produced which is used via ParquetWriter.write() is something like this:
Therefore, instead of parquet, we could use the |
Check if it is possible to export a Parquet file, with the
apoc.export.parquet.*
procedure, in a textual representation instead of a binary one,and add a flag if so.
See related Slack thread: https://neo4j.slack.com/archives/C136J23GE/p1713856995225349
The text was updated successfully, but these errors were encountered: