SQL Workbench/J 和 BigQuery
SQL Workbench/J and BigQuery
我目前正在使用 SQL Workbench/J 作为我的 GUI 界面和 运行 BigQuery 查询,但是我 运行 遇到了 10 秒超时问题当 运行ning 更复杂的查询时。关于如何增加默认超时限制的任何建议?是来自 GUI 的 accessible/changeable 吗?我收到的错误消息是这样的:
[Simba]BigQueryJDBCDriver The job has timed out on the server. Try increasing the timeout value. [SQL State=HY000, DB Errorcode=100034]
(PS: 我使用 these steps and this driver)
设置了 SQL Workbench/J
当您定义时,ConnectionString you are able to add driver properties. Timeout 是您可以使用的属性之一。
只需添加:
jdbc:bigquery://...;Timeout=3600;
我目前正在使用 SQL Workbench/J 作为我的 GUI 界面和 运行 BigQuery 查询,但是我 运行 遇到了 10 秒超时问题当 运行ning 更复杂的查询时。关于如何增加默认超时限制的任何建议?是来自 GUI 的 accessible/changeable 吗?我收到的错误消息是这样的:
[Simba]BigQueryJDBCDriver The job has timed out on the server. Try increasing the timeout value. [SQL State=HY000, DB Errorcode=100034]
(PS: 我使用 these steps and this driver)
设置了 SQL Workbench/J当您定义时,ConnectionString you are able to add driver properties. Timeout 是您可以使用的属性之一。
只需添加:
jdbc:bigquery://...;Timeout=3600;