Questions tagged [apache-superset]

Superset is an open source business intelligence web application that allows data exploration

Superset is an open-source business intelligence web application that allows data exploration, as well as the creation and sharing of data visualizations and dashboards.

For non-code questions, ask on the Apache Superset Slack community. The link changes often due to Slack's usage limits so can't be included here but is updated on the main README page on Github.

Resources:

  1. Official site
  2. Github
1173 questions
9
votes
3 answers

Superset How to add a filter in dashboard

Superset comes with an example named "World's Bank Data". In its dashboard, there is a filter named "Region Filter". How can I implement this? Is there a tutorial on this? Any pointer or a quick explanation will be greatly appreciated.
kee
  • 10,969
  • 24
  • 107
  • 168
9
votes
1 answer

How to allow Superset to recognize that a string is a datetime?

I am using Superset as a data visualizer with an SQLite database. Because SQLite doesn't have DATETIME type, I use the type TEXT to add a date and an hour. Nevertheless, Superset then doesn't recognize that this "TEXT" or String is a date! This is…
LaPalme
  • 339
  • 5
  • 16
8
votes
3 answers

How to configure Celery Worker and Beat for Email Reporting in Apache Superset running on Docker?

I am running Superset via Docker. I enabled the Email Report feature and tried it: However, I only receive the test email report. I don't receive any emails after. This is my CeleryConfig in superset_config.py: class CeleryConfig(object): …
Snow
  • 1,058
  • 2
  • 19
  • 47
8
votes
3 answers

Default Login for Docker Image of Superset?

Installed superset using the docker image, but I was never prompted for an admin account creation. I've tried admin/admin and admin/superset combinations but nothing is working.
mysticarcher
  • 105
  • 1
  • 1
  • 6
8
votes
1 answer

How can I embed Superset Apache into Flask web app?

I have a flask web application with many pages where users can insert some data stored in mysql using sqlalchemy. I would create another page with an interactive dashboard. I googled and I found superset that it seems perfect for my app. It's…
Alessio
  • 111
  • 1
  • 1
  • 5
8
votes
4 answers

How to create a drill down graph using apache superset?

Is it possible to create a drill down graph with apache superset? Say for example - population of all countries and onclick of a country, population of all states within that country should be drawn and onclick of state, population of state should…
Nagasree
  • 173
  • 2
  • 2
  • 9
8
votes
2 answers

Is there SQLAlchemy dialect support JDBC?

I want to connect Superset to a database by a JDBC driver. But from what I find there is no a SQLAlchemy dialect ready for this purpose. The closest option may be jaydebeapi but it does not have a SQLAlchemy dialect either. Is there a way from…
robert
  • 397
  • 1
  • 3
  • 14
7
votes
2 answers

Superset Connect to a private database

I have a database running in a private VPC. The database isn't publicly accessible. Does superset support Connecting to databases via an SSH Tunnel? If so any link to the docs?
dckr9
  • 133
  • 1
  • 6
7
votes
1 answer

Does Apache Superset support Weighted Averages?

I'm trying to use Apache Superset to create a dashboard that will display the average rate of X/Y at different entities such that the time grain can be changed on the fly. However, all I have available as raw data is daily totals of X and Y for the…
JZ1987
  • 99
  • 4
7
votes
1 answer

Apache SuperSet is very slow

Any recommendation on how to make superset faster? Cache seems to load full data from the cache, I thought it load only old data from the cache, and real-time data from the database, isn't it like this? What about some parallel processing?
Brachi
  • 637
  • 9
  • 17
7
votes
2 answers

Can superset support real-time dashboards?

We have a need to build a dashboard on Superset (sourcing data from Druid). I am a new user for superset and I maybe missing something. How can I make my charts on a dashboard in superset be a moving window? For example, I need my dashboard refresh…
im2kul
  • 297
  • 1
  • 3
  • 13
7
votes
1 answer

Can I safely update Apache Superset via pip?

I am currently running an outdated version of Apache Superset 0.20.4. The Superset DB contains a substantial amount of slices and dashboards. I would like to update my version. Can I just run an upgrade from pip? Is any of you aware of any backward…
Flavien Lambert
  • 690
  • 1
  • 9
  • 22
7
votes
3 answers

Allowing users to only view data related to them in Apache Superset

I have some information related to different vendors in my database and I want to allow each registered vendor (representative person) to view slices/dashboards which contains only data related to them. One possible solution could be to create…
Alexandr
  • 149
  • 1
  • 4
6
votes
0 answers

Superset exporting and importing the Dashboards using CLI (for versioning control)

Goal: My goal is to export the all the dashboards from the superset so that I can save them as backup and also make sure that I can import them. Existing setup: I am cloning superset from git and using docker-compose -f docker-compose-non-dev.yml…
6
votes
5 answers

How to get Superset Token?? (for use Rest api)

I attempted to request a REST request to see the document below. But do not work. https://superset.apache.org/docs/rest-api request: curl -XGET -L http://[IP:PORT]/api/v1/chart response: {"msg":"Bad Authorization header. Expected value 'Bearer…
김태우
  • 1,033
  • 1
  • 12
  • 29
1
2
3
78 79