Sometimes, when we conduct a survey for a BigQuery job, our query ends with a SocketTimeoutException . You can see the code throwing the exception below.
this.bigquery.jobs().get(projectNumber, jobId).execute();
And here is the error message we receive.
... Caused by: java.net.SocketTimeoutException: Timeout while fetching URL: https://www.googleapis.com/bigquery/v2/projects//jobs/ ...
My question is is there a way to extend the timeout. And does anyone know what the default timeout is?
java google-app-engine google-bigquery
pgiecek
source share