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)

4

1 回答 1

15

当您定义ConnectionString时,您可以添加驱动程序属性超时是您可以使用的属性之一。

只需添加:

jdbc:bigquery://...;Timeout=3600;
于 2017-03-23T21:06:13.953 回答