Compute settings for the Databricks JDBC Driver

This article describes how to configure Azure Databricks compute resource settings for the Databricks JDBC Driver.

This article supplements the information in the following Databricks JDBC Driver articles:

To configure an Azure Databricks connection for the Databricks JDBC Driver, you must combine your authentication settings, any driver capability settings, and the following compute resource settings, into a JDBC connection URL or programmatic collection of JDBC connection properties. Whether you use a connection URL or a collection of connection properties will depend on the requirements of your target app, tool, client, SDK, or API. For examples of JDBC connection URLs and programmatic collections of JDBC connection properties, see Authentication settings for the Databricks JDBC Driver.

The driver requires the following compute resource configuration settings:

Setting Description
Host The Azure Databricks compute resource’s Server Hostname value.
Port 443
HTTPPath The Azure Databricks compute resource’s HTTP Path value.
SSL 1
ThriftTransport 2
Schema (optional) The name of the default schema to use.
Catalog (optional) The name of the default catalog to use.

A JDBC connection URL that uses the preceding settings has the following format:

jdbc:databricks://<server-hostname>:443;httpPath=<http-path>[;<setting1>=<value1>;<setting2>=<value2>;<settingN>=<valueN>]

Java code that uses the preceding settings has the following format:

// ...
String url = "jdbc:databricks://<server-hostname>:443";
Properties p = new java.util.Properties();
p.put("httpPath", "<http-path>");
p.put("<setting1>", "<value1");
p.put("<setting2>", "<value2");
p.put("<settingN>", "<valueN");
// ...
Connection conn = DriverManager.getConnection(url, p);
// ...

To get the connection details for an Azure Databricks cluster, do the following:

  1. Log in to your Azure Databricks workspace.
  2. In the sidebar, click Compute.
  3. In the list of available clusters, click the target cluster’s name.
  4. On the Configuration tab, expand Advanced options.
  5. Click the JDBC/ODBC tab.
  6. Copy the connection details that you need, such as Server Hostname, Port, and HTTP Path.

To get the connection details for a Databricks SQL warehouse, do the following:

  1. Log in to your Azure Databricks workspace.
  2. In the sidebar, click SQL > SQL Warehouses.
  3. In the list of available warehouses, click the target warehouse’s name.
  4. On the Connection Details tab, copy the connection details that you need, such as Server hostname, Port, and HTTP path.

To use the driver with an Azure Databricks cluster, there are two permissions that the calling user or service principal needs when connecting to or restarting the cluster:

  • CAN ATTACH TO permission to connect to the running cluster.
  • CAN RESTART permission to automatically trigger the cluster to start if its state is terminated when connecting.

To use the driver with a Databricks SQL warehouse, the calling user or service principal needs CAN USE permission. The Databricks SQL warehouse automatically starts if it was stopped.

Note

Databricks SQL warehouses are recommended when using Microsoft Power BI in DirectQuery mode.