我正在将数据流式传输到Google bigquery。我有一个重复的字段,但我收到以下错误:
[{"errors"=[
{"debugInfo"="generic::invalid_argument: This field is not a record.",
"location"="hashtags",
"message"="This field is not a record.",
"reason"="invalid"}],
"index"=0}]
架构包含:
...,
{
"name": "hashTags",
"type": "string",
"mode": "repeated"
}
我在我发送的JSON中传递了hashTags
的字符串列表。
出了什么问题,我该如何解决?我真的不想将单字段值写入记录。