superset/README.md

193 lines
7.7 KiB
Markdown
Raw Normal View History

Superset
2015-07-02 18:16:59 -04:00
=========
[![Build Status](https://travis-ci.org/apache/incubator-superset.svg?branch=master)](https://travis-ci.org/apache/incubator-superset)
[![PyPI version](https://badge.fury.io/py/superset.svg)](https://badge.fury.io/py/superset)
[![Coverage Status](https://codecov.io/github/apache/incubator-superset/coverage.svg?branch=master)](https://codecov.io/github/apache/incubator-superset)
[![PyPI](https://img.shields.io/pypi/pyversions/superset.svg?maxAge=2592000)](https://pypi.python.org/pypi/superset)
2018-01-04 17:45:58 -05:00
[![Join the chat at https://gitter.im/airbnb/superset](https://badges.gitter.im/apache/incubator-superset.svg)](https://gitter.im/airbnb/superset?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2017-06-28 09:23:25 -04:00
[![Documentation](https://img.shields.io/badge/docs-apache.org-blue.svg)](https://superset.incubator.apache.org)
[![dependencies Status](https://david-dm.org/apache/incubator-superset/status.svg?path=superset/assets)](https://david-dm.org/apache/incubator-superset?path=superset/assets)
<img
src="https://cloud.githubusercontent.com/assets/130878/20946612/49a8a25c-bbc0-11e6-8314-10bef902af51.png"
alt="Superset"
width="500"
/>
2017-06-17 02:31:50 -04:00
**Apache Superset** (incubating) is a modern, enterprise-ready
business intelligence web application
2016-11-10 12:41:09 -05:00
[this project used to be named **Caravel**, and **Panoramix** in the past]
2016-03-19 19:09:08 -04:00
2016-01-27 16:56:23 -05:00
2016-09-14 19:39:40 -04:00
Screenshots & Gifs
------------------
2016-01-27 16:56:23 -05:00
2016-11-17 14:45:40 -05:00
**View Dashboards**
2017-03-21 17:00:09 -04:00
<kbd><img title="View Dashboards" src="https://raw.githubusercontent.com/apache/incubator-superset/master/superset/assets/images/screenshots/bank_dash.png"></kbd><br/>
2016-09-14 19:39:40 -04:00
**Slice & dice your data**
2017-03-21 17:00:09 -04:00
<kbd><img title="Slice & dice your data" src="https://raw.githubusercontent.com/apache/incubator-superset/master/superset/assets/images/screenshots/explore.png"></kbd><br/>
2017-03-21 17:00:09 -04:00
**Query and visualize your data with SQL Lab**
2016-09-14 19:39:40 -04:00
<kbd><img title="SQL Lab" src="https://raw.githubusercontent.com/apache/incubator-superset/master/superset/assets/images/screenshots/sqllab.png"></kbd><br/>
2017-03-21 17:00:09 -04:00
**Visualize geospatial data with deck.gl**
2017-03-21 17:00:09 -04:00
<kbd><img title="Geospatial" src="https://raw.githubusercontent.com/apache/incubator-superset/master/superset/assets/images/screenshots/deckgl_dash.png"></kbd><br/>
2016-09-14 19:39:40 -04:00
**Choose from a wide array of visualizations**
2017-03-21 17:00:09 -04:00
<kbd><img title="Visualizations" src="https://raw.githubusercontent.com/apache/incubator-superset/master/superset/assets/images/screenshots/visualizations.png"></kbd><br/>
2015-09-21 16:48:02 -04:00
2017-06-17 02:31:50 -04:00
Apache Superset
---------------
Apache Superset is a data exploration and visualization web application.
2015-09-21 16:48:02 -04:00
Superset provides:
2017-06-17 02:31:50 -04:00
* An intuitive interface to explore and visualize datasets, and
create interactive dashboards.
* A wide array of beautiful visualizations to showcase your data.
* Easy, code-free, user flows to drill down and slice and dice the data
underlying exposed dashboards. The dashboards and charts acts as a starting
point for deeper analysis.
* A state of the art SQL editor/IDE exposing a rich metadata browser, and
an easy workflow to create visualizations out of any result set.
2015-09-21 16:48:02 -04:00
* An extensible, high granularity security model allowing intricate rules
2017-06-17 02:31:50 -04:00
on who can access which product features and datasets.
Integration with major
authentication backends (database, OpenID, LDAP, OAuth, REMOTE_USER, ...)
* A lightweight semantic layer, allowing to control how data sources are
exposed to the user by defining dimensions and metrics
* Out of the box support for most SQL-speaking databases
* Deep integration with Druid allows for Superset to stay blazing fast while
2015-09-21 16:48:02 -04:00
slicing and dicing large, realtime datasets
* Fast loading dashboards with configurable caching
2015-09-21 16:48:02 -04:00
Database Support
----------------
2017-06-17 02:31:50 -04:00
Superset speaks many SQL dialects through SQLAlchemy, a Python
2015-09-21 16:48:02 -04:00
ORM that is compatible with
2016-03-16 23:25:41 -04:00
[most common databases](http://docs.sqlalchemy.org/en/rel_1_0/core/engines.html).
2015-09-21 16:48:02 -04:00
2017-06-17 02:31:50 -04:00
Superset can be used to visualize data out of most databases:
* MySQL
* Postgres
* Vertica
* Oracle
* Microsoft SQL Server
* SQLite
* Greenplum
* Firebird
* MariaDB
* Sybase
* IBM DB2
* Exasol
* MonetDB
* Snowflake
* Redshift
* Clickhouse
* Apache Kylin
2017-06-17 02:31:50 -04:00
* **more!** look for the availability of a SQLAlchemy dialect for your database
to find out whether it will work with Superset
Druid!
------
On top of having the ability to query your relational databases,
Superset ships with deep integration with Druid (a real time distributed
2017-06-17 02:31:50 -04:00
column-store). When querying Druid,
Superset can query humongous amounts of data on top of real time dataset.
Note that Superset does not require Druid in any way to function, it's simply
another database backend that it can query.
Here's a description of Druid from the http://druid.io website:
2015-07-15 21:01:25 -04:00
2016-03-16 23:25:41 -04:00
*Druid is an open-source analytics data store designed for
business intelligence (OLAP) queries on event data. Druid provides low
latency (real-time) data ingestion, flexible data exploration,
and fast data aggregation. Existing Druid deployments have scaled to
trillions of events and petabytes of data. Druid is best used to
2015-07-15 21:01:25 -04:00
power analytic dashboards and applications.*
2016-03-16 23:25:41 -04:00
Installation & Configuration
----------------------------
2015-09-05 12:23:46 -04:00
2017-06-28 09:23:25 -04:00
[See in the documentation](https://superset.incubator.apache.org/installation.html)
2015-09-05 12:23:46 -04:00
2016-04-01 19:16:21 -04:00
Resources
2015-12-11 11:51:13 -05:00
-------------
* [Mailing list](https://lists.apache.org/list.html?dev@superset.apache.org)
* [Gitter (live chat) Channel](https://gitter.im/airbnb/superset)
* [Docker image](https://hub.docker.com/r/amancevice/superset/) (community contributed)
2016-04-07 17:38:23 -04:00
* [Slides from Strata (March 2016)](https://drive.google.com/open?id=0B5PVE0gzO81oOVJkdF9aNkJMSmM)
2017-11-02 16:49:47 -04:00
* [Stackoverflow tag](https://stackoverflow.com/questions/tagged/apache-superset)
* [Join our Slack](https://join.slack.com/t/apache-superset/shared_invite/enQtNDMxMDY5NjM4MDU0LTc2Y2QwYjE4NGYwNzQyZWUwYTExZTdiZDMzMWQwZjc2YmJmM2QyMDkwMGVjZTA4N2I2MzUxZTk2YmE5MWRhZWE)
* [DEPRECATED Google Group](https://groups.google.com/forum/#!forum/airbnb_superset)
2015-12-11 11:51:13 -05:00
2015-09-27 21:02:00 -04:00
Contributing
------------
2017-06-17 02:31:50 -04:00
Interested in contributing? Casual hacking? Check out
[Contributing.MD](https://github.com/airbnb/superset/blob/master/CONTRIBUTING.md)
Who uses Apache Superset (incubating)?
--------------------------------------
Here's a list of organizations who have taken the time to send a PR to let
the world know they are using Superset. Join our growing community!
- [AiHello](https://www.aihello.com)
2017-06-17 02:31:50 -04:00
- [Airbnb](https://github.com/airbnb)
- [Airboxlab](https://foobot.io)
- [Aktia Bank plc](https://www.aktia.com)
2017-06-17 02:31:50 -04:00
- [Amino](https://amino.com)
- [Ascendica Development](http://ascendicadevelopment.com)
- [Astronomer](https://www.astronomer.io)
2017-06-17 02:31:50 -04:00
- [Brilliant.org](https://brilliant.org/)
- [Capital Service S.A.](http://capitalservice.pl)
2017-06-17 02:31:50 -04:00
- [Clark.de](http://clark.de/)
- [CnOvit](http://www.cnovit.com/)
2017-06-17 02:31:50 -04:00
- [Digit Game Studios](https://www.digitgaming.com/)
2017-07-19 04:18:34 -04:00
- [Douban](https://www.douban.com/)
2017-06-17 02:31:50 -04:00
- [Endress+Hauser](http://www.endress.com/)
- [FBK - ICT center](http://ict.fbk.eu)
- [Faasos](http://faasos.com/)
- [GfK Data Lab](http://datalab.gfk.com)
- [Konfío](http://konfio.mx)
- [Lime](https://www.limebike.com/)
- [Lyft](https://www.lyft.com/)
- [Maieutical Labs](https://maieuticallabs.it)
- [Myra Labs] (http://www.myralabs.com/)
- [PeopleDoc](https://www.people-doc.com)
2018-01-18 11:27:56 -05:00
- [Ona](https://ona.io)
2017-10-02 11:41:04 -04:00
- [Pronto Tools](http://www.prontotools.io)
2017-06-17 02:31:50 -04:00
- [Qunar](https://www.qunar.com/)
2018-03-06 02:11:01 -05:00
- [ScopeAI](https://www.getscopeai.com)
- [Shopee](https://shopee.sg)
2017-06-17 02:31:50 -04:00
- [Shopkick](https://www.shopkick.com)
- [Tails.com](https://tails.com)
- [THEICONIC](http://theiconic.com.au/)
2017-06-17 02:31:50 -04:00
- [Tobii](http://www.tobii.com/)
- [Tooploox](https://www.tooploox.com/)
- [Twitter](https://twitter.com/)
2017-06-17 02:31:50 -04:00
- [Udemy](https://www.udemy.com/)
2017-10-24 17:30:54 -04:00
- [VIPKID](https://www.vipkid.com.cn/)
- [Windsor.ai](https://www.windsor.ai/)
2017-08-07 11:31:49 -04:00
- [Yahoo!](https://yahoo.com/)
2018-02-25 18:00:10 -05:00
- [Zaihang](http://www.zaih.com/)
- [Zalando](https://www.zalando.com)
- [Fordeal](http://www.fordeal.com)