-
Notifications
You must be signed in to change notification settings - Fork 661
Intermittent BigQuery failures #2052
Copy link
Copy link
Closed
Labels
api: bigqueryIssues related to the BigQuery API.Issues related to the BigQuery API.priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Metadata
Metadata
Assignees
Labels
api: bigqueryIssues related to the BigQuery API.Issues related to the BigQuery API.priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Our system test which validates that we return a
PartialFailureErrorwhen invalid data is inserted into a table.The schema states that the
nameproperty must be a string.Our request body looks like this:
{ "rows": [ { "json": { "name": "dave" } }, { "json": { "name": 11 } } ] }The response is either:
The first I noticed this error was Friday, 3/3/17.
@tswast any ideas? Thanks!