https://github.com/conduitio-labs/conduit-connector-databricks
Conduit connector for Databricks
https://github.com/conduitio-labs/conduit-connector-databricks
conduit databricks go golang
Last synced: 5 days ago
JSON representation
Conduit connector for Databricks
- Host: GitHub
- URL: https://github.com/conduitio-labs/conduit-connector-databricks
- Owner: conduitio-labs
- Created: 2023-03-02T08:54:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-09-19T00:09:48.000Z (9 months ago)
- Last Synced: 2025-09-19T02:29:48.605Z (9 months ago)
- Topics: conduit, databricks, go, golang
- Language: Go
- Homepage:
- Size: 630 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Conduit Connector for Databricks
A [Conduit](https://conduit.io) destination connector for [Databricks](https://www.databricks.com/).
## How to build?
Run `make build` to build the connector.
## Testing
The repository contains unit and integrations tests for the connector. The integration tests need the following
environment variables:
* `DATABRICKS_API_TOKEN`
* `DATABRICKS_HOST`
* `DATABRICKS_PORT`
* `DATABRICKS_HTTP_PATH`
If those are not set, the integration tests will be skipped. The following commands can be used to run all the tests:
```shell
export DATABRICKS_API_TOKEN="dapi123abc"
export DATABRICKS_HOST="dbc-123-abc.cloud.databricks.com"
export DATABRICKS_PORT="443"
export DATABRICKS_HTTP_PATH="/sql/1.0/warehouses/123abc"
make test
```
## Destination
### Configuration
| name | description | required | default value |
|-------|------------------------------------------------------------------------------------------------------------------------|----------|---------------|
| `token` | Personal access token | true | |
| `host` | Databricks server hostname | true | |
| `port` | Databricks port | false | `443` |
| `httpPath` | Databricks compute resources URL | true | |
| `tableName` | Default table to which records will be written | true | |
