google api - How to stream repeated fields into bigquery for non-records? -
i'm streaming data google bigquery. have repeated field, i'm receiving following error:
[{"errors"=[ {"debuginfo"="generic::invalid_argument: field not record.", "location"="hashtags", "message"="this field not record.", "reason"="invalid"}], "index"=0}]
the schema contains:
..., { "name": "hashtags", "type": "string", "mode": "repeated" }
i'm passing list of strings hashtags
in json i'm sending.
what's going wrong , how can fix it? don't want have make single-field value record.
Comments
Post a Comment