fix(deps): raise databricks-sdk ceiling to <0.118.0 to resolve #1252 on Spark Connect - #1517
Merged
Merged
Conversation
sd-db
force-pushed
the
sd-db/chore/bump-databricks-sdk-0117-fix-1252
branch
from
June 15, 2026 13:00
eb51db4 to
d93327e
Compare
Closed
…on Spark Connect databricks-sdk 0.117.0 fixes WorkspaceClient construction crashing with CONTEXT_UNAVAILABLE_FOR_REMOTE_CLIENT when importing databricks.sdk.runtime on Spark Connect (shared-access-mode) clusters - the failure behind #1252 (e.g. Python models on shared clusters). Raise the upper bound <0.105.0 -> <0.118.0 so installs pick up the fixed SDK, and refresh uv.lock (databricks-sdk 0.104.0 -> 0.117.0). Floor unchanged at >=0.68.0, so requirements.lowest-direct.txt is unaffected. Verified: unit suite (1182 passed) and a Python-model functional test on a UC cluster both pass against 0.117.0.
sd-db
force-pushed
the
sd-db/chore/bump-databricks-sdk-0117-fix-1252
branch
from
June 15, 2026 13:09
d93327e to
e54be88
Compare
Collaborator
Author
|
/integration-test |
|
Integration tests dispatched for PR #1517 by @sd-db. Track progress in the Actions tab. |
|
Integration results for PR #1517 — UC cluster ✅ success · SQL warehouse ✅ success · All-purpose cluster ✅ success · Shard coverage ✅ success |
jprakash-db
approved these changes
Jun 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Raises the
databricks-sdkupper bound to<0.118.0so installs pick updatabricks-sdk0.117.0, which fixesWorkspaceClientconstruction crashing withCONTEXT_UNAVAILABLE_FOR_REMOTE_CLIENTon Spark Connect (shared-access-mode) clusters. Closes #1252.What changed
pyproject.toml:databricks-sdkceiling<0.105.0→<0.118.0.uv.lock: refreshed —databricks-sdk0.104.0 → 0.117.0 (and its newurllib3dependency).How is this tested?
1182 passed, 6 skippedagainstdatabricks-sdk0.117.0.TestPythonModel) passes against 0.117.0 — exercises the SDK job/command-submission path.Reproduced the fix directly:WorkspaceClientconstruction crashes on 0.104.0 and succeeds on 0.117.0.