cgivre commented on a change in pull request #6610: Add support to Apache Drill URL: https://github.com/apache/incubator-superset/pull/6610#discussion_r278699721
########## File path: docs/installation.rst ########## @@ -449,6 +455,31 @@ Required environment variables: :: See `Teradata SQLAlchemy <https://github.com/Teradata/sqlalchemy-teradata>`_. +Apache Drill +--------- +At the time of writing, the SQLAlchemy Dialect is not available on pypi and must be downloaded here: +`SQLAlchemy Drill <https://github.com/JohnOmernik/sqlalchemy-drill>`_ + +Alternatively, you can install it completely from the command line as follows: :: + + git clone https://github.com/JohnOmernik/sqlalchemy-drill + cd sqlalchemy-drill + python3 setup.py install + +Once that is done, you can connect to Drill in two ways, either via the REST interface or by JDBC. If you are connecting via JDBC, you must have the +Drill JDBC Driver installed. + +The basic connection string for Drill looks like this :: + + drill+sadrill://{username}:{password}@{host}:{port}/{storage_plugin}?use_ssl=True + +If you are using JDBC to connect to Drill, the connection string looks like this: :: + + drill+jdbc://{username}:{password}@{host}:{port}/{storage_plugin} + +For a complete tutorial about how to use Apache Drill with Superset, see this tutorial: +`Visualize Anything with Superset and Drill <http://thedataist.com/visualize-anything-with-superset-and-drill/>`_ + Review comment: Thank you! ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
