SQL Workbench/J and BigQuery
Asked Answered
S

1

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)

Squilgee answered 23/3, 2017 at 20:59 Comment(0)
H
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;
Hotze answered 23/3, 2017 at 21:6 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.