我正在尝试以csv格式从BigQuery导出大型表:这是响应:
Table gdrive://home/bq-results-20200325/bq-results-20200325-101125-tc8d5cqgeift.csv too large to be exported to a single file. Specify a uri including a * to shard export. See 'Exporting data into one or more files' in https://cloud.google.com/bigquery/docs/exporting-data.
如何将目标uri更改为gdrive://home/bq-results-20200325/bq-results-*.gz?
答案 0 :(得分:0)
documentation表示您可以使用destinationUris字段和单个通配符(*)。但是,它也提到您cannot EXPORT TABLE数据到本地文件,Google表格或Google云端硬盘。唯一受支持的导出位置是Cloud Storage(GCS),对于超过1 GB的数据,您可以使用通配符。
尽管如此,您仍然可以查询表(例如SELECT *)和save the results in Google Driver,如果此选项只能在BigQuery UI中执行。