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:
parent
ac498ddd23
commit
2e6afdf7e7
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue