I have large SQL select to do on regular basis such as :
select * from table1 where ...
which 50 millions records, from Python client. I could not find in Google Compute doc, the limit of exporting large amount of data from Big Query through SQL from Python client.
Exporting is only limited to 1GO per file....
https://cloud.google.com/bigquery/docs/exporting-data#bigquery-export-table-gcs-python
Is there any reference/experience on very large SQL select done on remote client and the limitation of Big Query ?
EDIT Question 2 :
Why we cannot receive more than 128Mo of data when using Order by clause ?