I've been using the Big Query api and 90% of my requests failed due to this error:
HTTPException: Deadline exceeded while waiting for HTTP response from URL: https://www.googleapis.com/bigquery/v2/projects/poorproject/queries?alt=json
I'm performing UPDATE operation so I'm using the standard SQL instead of legacy SQL. I know that standard SQL is much slower and for this reason the Deadline error is being thrown.
I'm using GAE Endpoints API and I've tried to increase the urlfetch time but it didn't work.
Is there a solution for this?
Thanks :)