6

I am currently using SQL Workbench/J as my GUI to interface and run queries for BigQuery, however I'm running into a 10 second timeout issue when running more complicated queries. Any advice on how to increase the default timeout limit? Is it accessible/changeable from within the GUI? The error message I'm receiving is this:

[Simba]BigQueryJDBCDriver The job has timed out on the server. Try increasing the timeout value. [SQL State=HY000, DB Errorcode=100034]

(PS: I set up SQL Workbench/J using these steps and this driver)

Jon
  • 71
  • 1
  • 4

1 Answers1

15

When you define the ConnectionString you are able to add driver properties. Timeout is one of the properties you can use.

Simply add:

jdbc:bigquery://...;Timeout=3600;
Pentium10
  • 204,586
  • 122
  • 423
  • 502