Hacker News new | ask | show | jobs
by lysecret 226 days ago
Nice does this also allow me to write to parquet from my Postgres table?
2 comments

Yes, just COPY table TO 's3://mybucket/data.parquet'

Or COPY table TO STDOUT WITH (format 'parquet') if you need it on the client side.

Ong yes it works this would have made my past job so much easier.