Databricks
Guide to integrate Databricks with Sprinkle
This page covers the details about integrating Databricks with Sprinkle.
When setting up Databricks connection, Sprinkle additionally requires a Cloud bucket. This guide covers the role of all the components and steps to setup.
Integrating Databricks: All analytical data is stored and queried from Databricks warehouse
Cloud Bucket: Sprinkle stores all intermediate data and report caches in this bucket
Step by Step Guide
Integrating Databricks
STEP-1: Allow Databricks to accept connection from Sprinkle
Allow inbound connection on databricks jdbc port (default is 443) from Sprinkle IPs (34.93.254.126, 34.93.106.136).
STEP-2: Configure Databricks Connection on Sprinkle
To get the connection details for a Databricks cluster, do the following:
Log in to your Databricks workspace.
In the sidebar, click Compute.
In the list of available clusters, click the target cluster’s name.
On the Configuration tab, expand Advanced options.
Click the JDBC/ODBC tab.
Copy the connection details that you need, such as Server Hostname, Port, and HTTP Path.
Log into Sprinkle application
Navigate to Admin -> Warehouse -> New Warehouse Connection
Select Databricks
In the Connect Warehouse form in Sprinkle, provide all the mandatory details
Distinct Name: Name to identify this connection
Host: Provide the IP address or hostname of your Databricks instance.
Port: Provide the port number for your Databricks instance.
Database: Provide the name of the specific database you want to connect to within Databricks, if applicable. This should be an existing database
HTTP Path: Provide the HTTP path component of your Databricks cluster connection URL. This path identifies the specific Databricks instance you're trying to access.
Username: The username (ID) you use to log in to data bricks.
Password: Personal access token. To generate, see here.
Storage Mount Name: Storage that will be used by Databricks. See the section for more details.
Test Connection
Create
Creating Storage Mount
Go to Databricks home page and click on the create button on the right side and select notebook. Select the cluster you want to configure with sprinkle and select python as default language.
Run this Python code
Depending on your Cloud, you can create the mount. Sprinkle currently supports Databricks in Azure and AWS clouds.
Azure blob
Refer https://docs.databricks.com/data/data-sources/azure/azure-storage.html
S3
Refer https://docs.databricks.com/data/data-sources/aws/amazon-s3.html
Note:
Storage configured and Storage mount on data bricks should be on the same bucket
Give a unique Storage Mount name and it should not collide with existing mounts. (If path name is /mnt/sprinkle then just mention sprinkle)
Need to set this property "spark.databricks.delta.alterTable.rename.enabledOnAWS" to True in databricks.
Create a Cloud Bucket
Cloud bucket can be created depending on your Databricks Cloud. Sprinkle supports creating a bucket in AWS or Azure. Refer respective documents for creating a configuring the Cloud Bucket.
Last updated