diff --git a/README.md b/README.md index 31190ad5a6823..673684da59db9 100644 --- a/README.md +++ b/README.md @@ -52,27 +52,27 @@ A modern, enterprise-ready business intelligence web application. **Gallery** -
+
**View Dashboards** -
+
**Slice & dice your data** -
+
**Query and visualize your data with SQL Lab** -
+
**Visualize geospatial data with deck.gl** -
+
**Choose from a wide array of visualizations** -
+
## Why Superset? @@ -102,26 +102,27 @@ Superset can query data from any SQL-speaking datastore or data engine (e.g. Pre Here are some of the major database solutions that are supported:

- redshift - google-biquery - snowflake - presto - druid - postgresql - mysql - mssql-server - db2 - sqlite - sybase - mariadb - vertica - oracle - firebird - greenplum - clickhouse - exasol - monet-db - apache-kylin + redshift + google-biquery + snowflake + trino + presto + druid + postgresql + mysql + mssql-server + db2 + sqlite + sybase + mariadb + vertica + oracle + firebird + greenplum + clickhouse + exasol + monet-db + apache-kylin hologres

diff --git a/docs/src/pages/docs/Connecting to Databases/index.mdx b/docs/src/pages/docs/Connecting to Databases/index.mdx index a08a9456690fd..eeebd0276929d 100644 --- a/docs/src/pages/docs/Connecting to Databases/index.mdx +++ b/docs/src/pages/docs/Connecting to Databases/index.mdx @@ -43,6 +43,7 @@ A list of some of the recommended packages. |[MySQL](/docs/databases/mysql)|```pip install mysqlclient```|```mysql://:@/```| |[Oracle](/docs/databases/oracle)|```pip install cx_Oracle```|```oracle://```| |[PostgreSQL](/docs/databases/postgresql)|```pip install psycopg2```|```postgresql://:@/```| +|[Trino](/docs/databases/trino)|```pip install sqlalchemy-trino```|```trino://{username}:{password}@{hostname}:{port}/{catalog}```| |[Presto](/docs/databases/presto)|```pip install pyhive```|```presto://```| |[SAP Hana](/docs/databases/hana)|```pip install hdbcli sqlalchemy-hana or pip install apache-superset[hana]```|```hana://{username}:{password}@{host}:{port}```| |[Snowflake](/docs/databases/snowflake)|```pip install snowflake-sqlalchemy```|```snowflake://{user}:{password}@{account}.{region}/{database}?role={role}&warehouse={warehouse}```| diff --git a/docs/src/pages/docs/Connecting to Databases/trino.mdx b/docs/src/pages/docs/Connecting to Databases/trino.mdx new file mode 100644 index 0000000000000..c818f6c84564c --- /dev/null +++ b/docs/src/pages/docs/Connecting to Databases/trino.mdx @@ -0,0 +1,17 @@ +--- +name: Trino +menu: Connecting to Databases +route: /docs/databases/trino +index: 28 +version: 1 +--- + +## Trino + +The [sqlalchemy-trino](https://pypi.org/project/sqlalchemy-trino/) library is the recommended way to connect to Trino through SQLAlchemy. + +The expected connection string is formatted as follows: + +``` +trino://{username}:{password}@{hostname}:{port}/{catalog} +``` diff --git a/superset-frontend/images/trino.png b/superset-frontend/images/trino.png new file mode 100644 index 0000000000000..904db40bb56c5 Binary files /dev/null and b/superset-frontend/images/trino.png differ