Skip to content

Commit 564ea86

Browse files
authored
Update Splunk DB Connect guide with new JDBC information
fixed JDBC url to not point at ODBC fixed class name to be correct with newest version Fixed url pattern
1 parent bde8443 commit 564ea86

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/markdown/Splunk DB Connect guide for Databricks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,17 +103,17 @@ This topic explains how to setup DB Connect before you use it to access database
103103
Download and install the JDBC Driver. Follow the steps below to setup the driver:
104104

105105
1. Configure Databricks JDBC Drivers:
106-
1. Download the JDBC Databricks driver ([download](https://pages.databricks.com/ODBC-Driver-Download.html))
106+
1. Download the JDBC Databricks driver ([download](https://www.databricks.com/spark/jdbc-drivers-download))
107107
2. From the backend, place the `SparkJDBC42.jar` and `EULA.txt` (downloaded driver file and EULA file) to `$SPLUNK_HOME/etc/apps/splunk_app_db_connect/drivers` directory.
108108
3. From the backend, navigate to the `$SPLUNK_HOME/etc/apps/splunk_app_db_connect/local` directory and create a file named `db_connection_types.conf`, and add the following content in the file. (Create the local directory if not exists)
109109

110110
```
111111
[databricks_spark_sql]
112112
displayName = Databricks Spark SQL
113113
serviceClass = com.splunk.dbx2.SparkJDBC
114-
jdbcUrlFormat = jdbc:spark://<host>:<port>/<database>
115-
jdbcUrlSSLFormat = jdbc:spark://<host>:<port>/<database>?useSSL=true
116-
jdbcDriverClass = com.simba.spark.jdbc.Driver
114+
jdbcUrlFormat = jdbc:databricks://<host>:<port>/<database>
115+
jdbcUrlSSLFormat = jdbc:databricks://<host>:<port>/<database>?useSSL=true
116+
jdbcDriverClass = com.databricks.client.jdbc.Driver
117117
supportedVersions = 1.0
118118
port = 10000
119119
ui_default_catalog = $database$

0 commit comments

Comments
 (0)