Skip to main content

Apache Superset

You can use Superset to query and visualize data.

Supported Versions

  • Superset 1.5.3 and later
  • Dremio SQLAlchemy connector 3.0.2 and later

Supported Authentication Method

Use a personal access token (PAT) created in a Sonar project. To create one, follow the steps in the section Creating a Token. After you obtain a PAT, it is recommended that you URL-encode it. To encode it locally on your system, you can follow these steps:

  1. In a browser window, right-click an empty area of the page and select Inspect or Inspect Element, depending on your browser.
  2. In the top bar of the inspection pane, click Console.
  3. 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.

Prerequisites

If you installed Superset according to the instructions for installing from scratch, install the Dremio SQLAlchemy Connector on the system or in the VM where Apache Superset is running. Instructions are in the sqlalchemy_dremio repository in GitHub.

Creating a Connection

  1. If you are using a version of Superset earlier than 2.1.0, follow these steps:

    1. Select Data > Databases in the menu bar at the top of the screen.
    2. Click the Database button in the top-right corner of the screen.
  2. If you are using version 2.1.0 or later of Superset, follow these steps:

    1. Click Datasets in the menu bar at the top of the screen.
    2. Click the plus (+) icon in the top-right corner.
    3. Select Data > Connect database.
  3. In the Connect a Database dialog, follow these steps:

    1. Select Other from the Supported Databases field.
    2. In the Display Name field, name the new connection.
    3. In the SQLALCHEMY URI field, specify a URI that is in this format. Use an ampersand in front of each additional property that you add:
    SQLAlchemy URI format
    dremio+flight://data.dremio.cloud:443/[<schema>]?token=<PAT>&UseEncryption=true[&<option>=<value>[&...]]
    • <schema>: The name of the database schema to use by default when a schema is not given in a query. Providing a schema is optional. Specifying a schema does not prevent queries from being issued for other schemas; such queries must explicitly include the schema.
    • <PAT>: The URL-encoded personal access token that you obtained from Dremio Cloud. See Supported Authentication Method.
    • [&<option>=<value>[&...]] is one or more optional properties from the SSL connection properties and Advanced properties tables below. Separate each property with an ampersand (&).
    Example SQLAlchemy URI
    dremio+flight://data.dremio.cloud:443/?token=dOOfxnJlTnebGu7Beta9NOT-A-REAL-PATyfOoNbJwEMep7UjkQu0JTsFXpYGm==&UseEncryption=true

      4. Test the connection. If the test fails, check the syntax and values in the connection URI. 5. Click Connect.

SSL Connection Properties

Use the following properties to configure SSL encryption and verification methods:

NameTypeDescriptionDefault Value
UseEncryptionintegerForces the client to use an SSL-encrypted connection to communicate with Sonar. Accepted value: true, the client communicates with Sonar only using SSL encryption. This is the only possible value.true
disableCertificateVerificationintegerSpecifies whether to verify the host certificate against the trust store. Accepted values: false, verifies the certificate against the trust store; true, does not verify the certificate against the trust store.false
trustedCertsstringThe full path of the .pem file containing certificates trusted by a CA, for the purpose of verifying the server. If this option is not set, defaults to using the trusted CA certificates .pem file. The TLS connection fails if you do not specify a value when UseEncryption is true and disableCertificateVerification is false.N/A

Advanced Properties

NameTypeDescriptionDefault ValueRequired?
routing_enginestringThe engine to route queries to while a connection remains open.N/ANo
routing_tagstringThe tag to be associated with all queries executed within a connection session.N/ANo