I plan to export ~600 TB of data from BigQuery to a bucket in Cloud Storage for archiving purposes. So far I've tried using BQ's export function, but the 50 TB limit per day is holding back the transfer process. I've also looked into using the EXPORT DATA SQL statement, but that might be quite expensive considering on-demand BQ Pricing.
Storage Read API looks like it was made to solve the export limit, but there doesn't seem to be any examples on how to transfer large amounts of data from BQ to GCS explicitly. I was wondering how it this process would look like in a Python script for transferring a large amount of tables. Thank you!