From 2e6afdf7e71aacc9fb50cfa1de469ce2f875b33d Mon Sep 17 00:00:00 2001 From: Naren Date: Mon, 26 Oct 2020 11:01:16 -0400 Subject: [PATCH] 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 --- docs/src/pages/docs/Connecting to Databases/dremio.mdx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/src/pages/docs/Connecting to Databases/dremio.mdx b/docs/src/pages/docs/Connecting to Databases/dremio.mdx index baeeb1187..7281f6946 100644 --- a/docs/src/pages/docs/Connecting to Databases/dremio.mdx +++ b/docs/src/pages/docs/Connecting to Databases/dremio.mdx @@ -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.