DBeaver
You can run SQL from DBeaver to explore your data in your data lakes and relational databases through Dremio.
Supported Versions
You can use any version of DBeaver for Linux, MacOS, or Windows, except for version 23.0.2.202304091457.
Supported Authentication Method
Authenticate to Dremio Cloud by using a personal access token. To create one, see Creating a Token.
Prerequisites
-
Download the JDBC driver for Arrow Flight SQL.
noteIf you want to use DBeaver with the legacy Dremio JDBC driver, see the instructions here.
-
URL-encode your personal access token. To encode it locally on your system, you can follow these steps:
- In a browser window, right-click an empty area of the page and select Inspect.
- Click Console.
- Type
encodeURIComponent("<PAT>")
, where<PAT>
is the personal access token that you obtained from Dremio Cloud. The URL-encoded PAT appears in red on the next line. You can highlight it and copy it to your clipboard.
-
Install the Dremio Cloud certificate in your system trust store.
-
At a command-line prompt, enter this command: Command to display the Dremio Cloud certificates
openssl s_client -showcerts -connect data.dremio.cloud:443 </dev/null
-
Copy the last certificate, including the lines
-----BEGIN CERTIFICATE-----
and-----END CERTIFICATE-----
. -
Paste the content of your clipboard into a new text-based file named
cert.pem
.
Then, follow one of these steps:
-
If you are using DBeaver on Linux: Install the certificate according to the instructions for your operating system.
-
If you are using DBeaver on MacOS:
a. In Finder, double-click this new file.
b. Select System as the trust-store type.
-
If you are using DBeaver on Windows:
a. At a command-line prompt, enter one of these commands:
certlm
if you want to add the certificate for all user accounts on your Windows system.certmgr
if you want to add the certificate only for the current user account.
b. Right-click the folder Trusted Root Certification Authorities.
c. Select Import.
d. Browse for the
cert.pem
file and import it.
-
Connecting to Dremio
-
In DBeaver, add the JDBC driver for Arrow Flight SQL as a new driver. You need to do this only once, and can skip this step if DBeaver already lists this driver in its Driver Manager dialog:
a. In the menubar, select Database > Driver Manager.
b. In the Driver Manager dialog, click New.
c. In the Settings section, follow these steps:
-
In the Name field, specify a name for the driver, such as "JDBC Driver for Arrow Flight SQL".
-
In the Driver Type field, ensure that Generic is the selected driver type.
-
In the Class Name field, specify
org.apache.arrow.driver.jdbc.ArrowFlightJdbcDriver
. -
In the URL Template field, specify
jdbc:arrow-flight-sql://data.dremio.cloud:443/?useEncryption=true
. -
In the Default Port field, specify
443
.
d. In the Libraries section, click Add File and select the
.jar
file for the JDBC driver for Arrow Flight SQL.e. Click OK.
-
-
Create a connection to Dremio that uses the driver:
a. Select Database > New Connection from JDBC URL.
b. In the Create New Connection from JDBC URL dialog, type
jdbc:arrow-flight-sql://data.dremio.cloud:443/?useEncryption=true
. At this point, DBeaver lists the driver in the Drivers field.c. Select the driver and click Next.
d. In the Connect to a Database dialog, follow these steps:
-
Select URL as the value for Connect By.
-
In the JDBC URL field, append this string to the URL:
&token=<URL-encoded PAT>
noteIf connecting to a non-default project, you must append
&catalog=<project_id>
before&token=<URL-encoded PAT>
and replace<project_id>
with your project ID. -
In the URL, replace
<URL-encoded PAT>
with your URL-encoded personal access token. -
(Optional) Click Test Connection. If the connection works, the Connection Test dialog opens and indicates that DBeaver is able to connect to Dremio. The connection is not held open. Click OK.
-
Click Finish.
-