Credits: This repository is only an updated version of the work of Fernando Goncalves and Rajesh Kumar Ravi.
To build a dockerized Metabase including the Databricks driver from this repository, simply run:
docker build -t metabase:0.48.6-db -f Dockerfile .
The Metabase Databricks driver gets build and included in a final Metabase docker image.
To run the tests for this driver, run the following:
docker build -t metabase/databricks-test --target stg_test .
docker run --rm --name mb-test metabase/databricks-test
or, if you have Clojure on your local machine, just:
clojure -X:test
- Display Name: a identification name for your database in Metabase
- Host: your Databricks URL (adb-XXXXXXXXX.azuredatabricks.net)
- Port: usually 443
- Database Name: usually
default
- Username: usually
token
- Password: personal access token created in Databrick's dashboard
- Additional JDBC connection string options:
- SQL Warehouse (Endpoint): you can find it at
/sql/warehouses/
at theConnection details
tab. It should have the following pattern:;transportMode=http;ssl=1;AuthMech=3;httpPath=/sql/1.0/endpoints/<SQL WAREHOUSE ID>;UID=token;PWD=<ACCESS TOKEN>
- Cluster Endpoint: you will find it at your cluster's details page. It should have the following pattern:
;transportMode=http;ssl=1;httpPath=sql/protocolv1/o/<ORG ID>/<CLUSTER ID>;AuthMech=3;UID=token;PWD=<ACCESS TOKEN>
- SQL Warehouse (Endpoint): you can find it at
Use the Dockerfile
on this repo:
docker build -t metabase:metabase-head-databricks-1.3.0 .
And you can deploy to some docker registry of your own and use the image!
Example of running:
docker run -d -p 3000:3000 --name metabase metabase:metabase-head-databricks-1.6.0
And access http://localhost:3000
.
Clone the Metabase repo first if you haven't already done so.
cd /path/to/metabase/
./bin/build
# (In the sparksql-databricks driver directory)
clojure -X:build :project-dir "\"$(pwd)\""
mkdir -p /path/to/metabase/plugins/
cp target/sparksql-databricks.metabase-driver.jar /path/to/metabase/plugins/
jar -jar /path/to/metabase/metabase.jar
or:
mkdir -p /path/to/metabase/plugins
cp target/sparksql-databricks.metabase-driver.jar /path/to/metabase/plugins/
cd /path/to/metabase_source
lein run