Y
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
mslot
226 days ago
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.
link
lysecret
226 days ago
Ong yes it works this would have made my past job so much easier.
link
Or COPY table TO STDOUT WITH (format 'parquet') if you need it on the client side.