我尝试通过bq命令将日志从Google Cloud Storage加载到BigQuery 我有这个错误“无法将值转换为字符串”。
我的示例数据
{"ids":"1234,5678"}
{"ids":1234}
我的示例架构
[
{ "name":"ids", "type":"string" }
]
似乎ID无法在单个ID处转换为无引号。 数据是使用fluent-plugin-s3创建的,但是逗号连接的多个ID可以用引号绑定,而不是单个id。
如何将这些数据加载到BigQuery?
提前致谢
答案 0 :(得分:0)