You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We started getting "context deadline exceeded" after upgrade from 1.4.0 to 1.5.3
This happens during inital connection to the warehouse.
We are getting that error on multiple Databricks warehouses from different accounts.
iftimeoutSeconds, ok, err:=params.extractAsInt("timeout"); ok {
The text was updated successfully, but these errors were encountered:
gilsegment
changed the title
Critical issue! "context deadline exceeded" after upgrade from 1.4.0 to 1.5.3
Critical! "context deadline exceeded" after upgrade from 1.4.0 to 1.5.3
Apr 3, 2024
gilsegment
changed the title
Critical! "context deadline exceeded" after upgrade from 1.4.0 to 1.5.3
"context deadline exceeded" after upgrade from 1.4.0 to 1.5.3
Apr 4, 2024
gilsegment
changed the title
"context deadline exceeded" after upgrade from 1.4.0 to 1.5.3
Critical: "context deadline exceeded" after upgrade from 1.4.0 to 1.5.3
Apr 4, 2024
@gilsegment Can you please help us to narrow down the scope of the issue? 1.5.3 doesn't introduce much changes, so can you please try to gradually upgrade from 1.4.0 and check which version contains the issue? That would help us a lot. Thank you!
Unfortunately I cannot do that.
Few things I can suggest are:
See which changes are relevant in the release notes from 1.4.0 to 1.5.3
Respect the timeout input parameter like I recommended in my initial comment. Or introduce a new parameter just for the ping.
Check if during the time I reported this, there was a backend issue with Databricks that might have caused that. I think this it less likely because we seen this happening right after the client library was upgraded. But still possible. (first query after connection takes long time -> "select 1" in our case)
We started getting "context deadline exceeded" after upgrade from 1.4.0 to 1.5.3
This happens during inital connection to the warehouse.
We are getting that error on multiple Databricks warehouses from different accounts.
I suspect we are getting timeout here:
databricks-sql-go/connection.go
Line 82 in 1648935
which uses hard coded timeout of 60s without option to modify it:
databricks-sql-go/internal/config/config.go
Line 191 in beea4c4
Maybe you should use the "timeout" provided in DSN also for the ping
databricks-sql-go/internal/config/config.go
Line 242 in beea4c4
The text was updated successfully, but these errors were encountered: