You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some Parquet files that I need to send as CSV/json (user choice). I’d like to know how I can do this on the fly in order to send the data directly to the end user.
So far, I imagine two possible approaches:
Use something like COPY (FROM 'my.parquet') TO 'my-temp.csv' and then send the temporary file.
Iterate through the Parquet file and convert each row with a Node.js package.
Is there a way to achieve this without having to write a temporary CSV file to disk or using another (slower) node package?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I have some Parquet files that I need to send as CSV/json (user choice). I’d like to know how I can do this on the fly in order to send the data directly to the end user.
So far, I imagine two possible approaches:
Is there a way to achieve this without having to write a temporary CSV file to disk or using another (slower) node package?
Regards
Beta Was this translation helpful? Give feedback.
All reactions