feat(connectors): add Databricks connector - #325
Open
BittuBarnwal7479 wants to merge 9 commits into
Open
Conversation
|
@BittuBarnwal7479 is attempting to deploy a commit to the Kaelio Team on Vercel. A member of the Team first needs to authorize it. |
Contributor
Author
|
Hey @andreybavt , could you please review this when you have some time? thanks! |
Contributor
|
@BittuBarnwal7479 please fix the merge conflicts first |
…ector # Conflicts: # README.md # docs-site/content/docs/cli-reference/ktx-setup.mdx # docs-site/content/docs/getting-started/quickstart.mdx # docs-site/content/docs/integrations/primary-sources.mdx # packages/cli/src/connection-drivers.ts # packages/cli/src/context/connections/connection-type.ts # packages/cli/src/context/connections/dialects.ts # packages/cli/src/context/scan/local-scan.ts # packages/cli/src/context/sql-analysis/dialect-notes.ts # packages/cli/src/setup-databases.ts # packages/cli/src/status-project.ts # packages/cli/test/context/connections/dialects.test.ts # packages/cli/test/context/connections/drivers.test.ts # packages/cli/test/context/connections/local-warehouse-descriptor.test.ts # packages/cli/test/context/mcp/dialect-notes.test.ts # pnpm-lock.yaml
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
Adds a new Databricks connector for read-only access to Databricks SQL Warehouses, including schema introspection, table and column discovery, sampling, and query execution.
fixes: #162
What changed
Added the Databricks connector under
packages/cli/src/connectors/databricks/Integrated Databricks into driver registration, setup, scan, status, and dialect handling
Added support for:
Added Databricks docs and examples
Added focused connector and registry tests
Validation
Live validation was performed against a Databricks SQL Warehouse using PAT authentication. Verified end to end:
SELECT 1SHOW CATALOGSSHOW TABLES IN workspace.defaultDESCRIBE TABLE workspace.default.ktx_testSELECT * FROM workspace.default.ktx_test LIMIT 5testConnectionINSERT,UPDATE,DELETE, andDROPNotes
OAuth M2M support is implemented, but I was not able to perform live validation for that path because I did not have M2M credentials available.