docs: Update Dremio doc with Arrow Flight connection details (#11422)

* update dremio doc w arrow flight connection

* Add connection string via Arrow Flight
* Modify the connector link

* Update dremio.mdx
This commit is contained in:
Naren 2020-10-26 11:01:16 -04:00 committed by GitHub
parent ac498ddd23
commit 2e6afdf7e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -9,13 +9,18 @@ version: 1
## Dremio
The recommended connector library for Dremio is
[sqlalchemy_dremio](https://github.com/sqggles/sqlalchemy_dremio).
[sqlalchemy_dremio](https://pypi.org/project/sqlalchemy-dremio/).
The expected connection string is formatted as follows:
The expected connection string for ODBC (Default port is 31010) is formatted as follows:
```
dremio://{username}:{password}@{host}:{port}/dremio
```
The expected connection string for Arrow Flight (Dremio 4.9.1+. Default port is 32010) is formatted as follows:
```
dremio+flight://{username}:{password}@{host}:{port}/dremio
```
This [blog post by Dremio](https://www.dremio.com/tutorials/dremio-apache-superset/) has some
additional helpful instructions on connecting Superset to Dremio.