0

I'm running into an issue when i'm inserting rows into bigquery

The error is simply 'backend error' and nothing else

I'm taking 10k rows at a time, and doing an insert, after about 40k records are inserted I get 'backend error'

I'm using python and inserting with this code

from google.cloud import bigquery
_bigquery_client = bigquery.Client()
rows=[[1,2],[3,4]]
_bigquery_client.insert_rows(rows)

1 Answer 1

1

The backend error is due to temporary server failure such as a network connection problem or a server overload.

backendError | 500 or 503

This error returns when there is a temporary server failure such as a network connection problem or a server overload.

These errors are being encountered from time to time but with a very low ratio which should comply to the BigQuery SLA. The fix for this is to just retry the insert.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.