- Host and port
- Authentication credentials (personal access token, or username & password)
- Project ID (Dremio Cloud only)
Creating the Connector in TextQL
Navigate to the TextQL Connectors Page and click Create New Connector. Select Dremio from the available connectors to open the configuration form. The form requires the following information:- Connector Name: A descriptive name to identify this Dremio connection in TextQL.
- Host: Your Dremio hostname (e.g.,
data.dremio.cloudfor Dremio Cloud). - Port: The Arrow Flight SQL port (
443for Dremio Cloud,32010for self-managed). - Project ID: Your Dremio Cloud project ID. Found in the Project overview page or as the
CATALOGvalue in your JDBC connection string. Leave blank for self-managed Dremio. - Spaces: Optional comma-separated list of Dremio spaces to scope table discovery (e.g.,
my_space, analytics). If left blank, all user tables are discovered automatically.
Authentication
TextQL supports two authentication methods for Dremio:
Select your authentication type and fill in the relevant credentials.
Generating a Personal Access Token (Dremio Cloud)
- Log in to your Dremio Cloud account.
- Click your profile icon in the top-right corner and select Account Settings.
- Navigate to Personal Access Tokens.
- Click Generate Token, give it a name, and copy the token value.
Dremio Cloud
To connect to Dremio Cloud:- Open the Project overview page in Dremio Cloud to find your connection details.
- Your JDBC connection string contains all the values you need:
Self-Managed Dremio
For self-managed Dremio deployments:SSL Configuration
SSL is enabled by default and is required for Dremio Cloud. For self-managed deployments, enable SSL if your Dremio instance is configured with TLS.Spaces
Dremio organizes data into spaces with dot-separated paths (e.g.,dremio_samples.customer360). When you specify a space like dremio_samples, TextQL discovers all tables in that space and any nested sub-spaces (e.g., dremio_samples.customer360, dremio_samples.nyc_citibike).
If you leave the Spaces field blank, TextQL discovers all user-accessible tables automatically.
Testing the Connection
After entering your credentials, click Create to establish the connection. TextQL will validate your credentials and create the connector. If the connection fails, verify your host, port, SSL setting, and authentication details.Having trouble connecting? See the Network Configuration Guide for firewall and IP whitelisting setup. Dremio uses the Arrow Flight SQL protocol over gRPC, so ensure your firewall allows outbound connections on the configured port.
Next Steps
Once connected, you can use TextQL to query your Dremio data. The connector supports querying across any space and dataset accessible to your Dremio user. For optimal performance and security:- Use a dedicated Dremio user or personal access token for TextQL connections
- Specify spaces to limit table discovery scope
- Enable SSL for all production deployments