so I have a scheduler running which pushes 500 rows to bigquery at every 2 seconds using "insertAll" streaming API. It inserts successfully for initial few batches but after sometime it receives following exception
com.google.api.client.googleapis.json.GoogleJsonResponseException: 500 Internal Server Error{
"code" : 500,
"errors" : [ {
"domain" : "global",
"message" : "Backend Error",
"reason" : "backendError"
} ],
"message" : "Backend Error"
}
Any idea what could be the reason?
Thanks, Ved
insertAlldoesn't create a job id, so insertAll issues can be much more difficult to track down. Can you send your project id and an approximate time that the last error happened? Also, error 500s are bigquery bugs, so you can also report them here: code.google.com/p/google-bigquery - Jordan Tigani