在将数据加载到BigQuery中,我得到以下错误(从BigQuery web控制台中的职务历史记录复制)。
Errors:
query: Failed to load FileDescriptorProto for '_GEN_DREMEL_ONESTORE_METADATA_SCHEMA_': (error code: invalidQuery)
Field numbers 19000 through 19999 are reserved for the protocol buffer library implementation.
Field numbers 19000 through 19999 are reserved for the protocol buffer library implementation.
[... repeated a total of exactly 1000 times...]
Field numbers 19000 through 19999 are reserved for the protocol buffer library implementation.
(error code: invalidQuery)数据是数据存储管理的备份。(那个团队的人让我去BigQuery寻求帮助。)
错误发生在六种随机选择的类型中,其他类型的加载成功。此外,加载另一种错误会导致错误“字段太多: 10693 (错误代码:无效)”。
失败的和成功的都有相似的大小约15G的数据。
我们能做些什么来加载这些数据?
发布于 2016-10-20 13:55:24
这是由BigQuery的限制造成的:每个表最多有10000列。因此,加载Datastore备份的实用程序在这种情况下根本无法工作。
https://stackoverflow.com/questions/39964091
复制相似问题