我正在尝试将BigQuery表单UI导出到Google存储表但面临此错误:
错误: 表格gs://mybucket/delta.csv.gz太大而无法导出到单个文件。指定包含分片导出的uri。 (错误代码:无效)
在我查询后尝试导出时:
下载不可用此结果集包含太多要下载的行。请使用“另存为表格”,然后导出生成的表格。
答案 0 :(得分:3)
BigQuery每个文件最多可以导出1 GB的数据 对于大于1GB的内容 - BigQuery支持导出到多个文件
请参阅Exporting data into one or more files
中的char line[MAX_LINE_LEN] = { 0 };
...Input and some code...
for (int index = 0; index < MAX_LINE_LEN - 1 && line[index] != '\0';
index++)
{
if (line[index] == '/' && line[index + 1] == '/'
&& comment_nest == 0)
break;
if (line[index == '/'] && line[index + 1] == '*')
comment_nest++;
if (line[index == '*'] && line[index + 1] == '/')
comment_nest--;
if (comment_nest == 0)
cout << line[index];
}
和Single wildcard URI