Skip to main content
Version: current [25.0.x]

DataGrip

You can run SQL from DataGrip to explore your data through Dremio. DataGrip supports connections to Dremio through the JDBC Driver for Arrow Flight SQL.

Supported Versions

Dremio connectivity is supported from DataGrip running on Windows, macOS, or Linux. It is recommended that you use the latest available version of DataGrip. You must be on Dremio 24.0.0 or later.

Supported Authentication Methods

You can authenticate your connection to Dremio using your Dremio username and password.

Prerequisites

Download the JDBC Driver for Apache Arrow Flight SQL.

Connecting to Dremio

Follow the steps below to connect to Dremio:

  1. Create a project in DataGrip (see Quick start with DataGrip for more information).

  2. Open the Database Explorer, click the + icon, then click Driver and Data Source.

    Add Driver and Data Source

  3. Select the Drivers tab, then click + to add a new driver.

  4. Fill in the following details for the new driver:

    • Name: Provide a name to identify the driver in DataGrip (e.g., Arrow Flight SQL 10).

    • Driver Files: Click +, click Custom JARs…, then select the Arrow Flight SQL driver (flight-sql-jdbc-driver-10.0.0.jar) from the location where you downloaded it.

    • Class: org.apache.arrow.driver.jdbc.ArrowFlightJdbcDriver

      Driver Details

  5. At the bottom of the Data Sources and Drivers panel, click Create Data Source.

  6. Ensure that the driver you just created is selected under Project Data Sources.

  7. For Authentication, select User & Password, and provide the Dremio username and password to send for authentication.

  8. For URL, follow the guidance under Connecting to Databases.

    The following is an example URL for a local Dremio installation that does not use an encrypted flight port:

    Example Flight SQL URL
    jdbc:arrow-flight-sql://localhost:32010?useEncryption=false
  9. Click Test Connection to confirm a valid connection to Dremio.

    Test Connection

  10. Click OK to save driver and data source.

  11. Run a simple query to see how results are displayed in DataGrip.

    Run a Query

    note

    When querying tables and views in Dremio, ensure you are using the fully qualified path. For example, SELECT * FROM Samples."samples.dremio.com"."NYC-taxi-trips".