I am trying to export the results of a query in BigQuery, and get the data into Postgres. The data may be as much 250 million record, ~26Gb.
Option 1:
Save query results to a temp table Export table to csv(s) Bulk upsert to postgres
(This will be slow)
Option 2:
Somehow get the two DBs to speak directly I don't know if this is possible
Thank you for any information!!!