Is it possible for BigQuery to return a compressed/gzipped response? I noticed when running a query like:
select * from [dataSet.tableId]
from a table with a large amount of columns (schema), but only 1mb in size, the response is 13mb. It's understandable that BigQuery FLATTENs one of the records, and the response is therefore larger because of the JSON structure. The resulting table in BigQuery however, is 2.04mb in size. I am not using any BigQuery client libraries, but making direct HTTP requests instead. Is there a work around to getting a smaller response with the actual tableData?
Thanks