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
4
votes
2 answers

Does Superset support background asynchronous datasource refresh?

I'm using Superset to build realtime dashboards and I want datasources (built from sqlLab resultset) be updated and cached in background on a specific day and time. I connected superset to MySql and built some queries in SQLLab. The result of these…
lmdza
  • 41
  • 1
  • 4
4
votes
1 answer

How to set permissions for a Superset dashboard

I have created different dashboards in Superset for different roles. At the moment, the only way I can limited who can see certain dashboards/charts is to use different tables/datasource. For examples: In MySQL, I have a table called TableX. I then…
hinzinho
  • 43
  • 1
  • 5
4
votes
2 answers

How can I change the favicon on my Superset Application?

I’m setting up a new Superset for a client and I would like to display his company logo in the browser with the favicon. It's not into the superset/config.py, there we can change the icon of Superset but not the favicon I am thinking about Flask or…
Arthur Millet
  • 91
  • 2
  • 4
4
votes
3 answers

I can't login to Superset after docker installation

I Installed Apache Superset through the docker installation and it requested to create an admin. I can build the app and get to the landing page but the credentials I created do not work. What did I miss?
Matias Diez
  • 1,237
  • 2
  • 17
  • 26
4
votes
2 answers

Link filters to queries on Superset

I have created a visualisation in Apache Superset based on a Saved Query. How can I update the query based on the values filtered within a Filter Box? I have experimented with Jinja and managed to pass hardcoded variables to my query through the…
ganninu93
  • 1,551
  • 14
  • 24
4
votes
2 answers

How to change a legend in the Superset Chart

I have a line graph like this but I couldn't figure out how to change the legend here. I tried to modify the metadata and couldn't make it work:
kee
  • 10,969
  • 24
  • 107
  • 168
4
votes
0 answers

Use custom map in Apache Superset Dashboard

Superset dashboards currently supports standard country maps (geojson) with ISO Codes. What would be the best way to import a custom map (like a forest map or an ocean map for example...) in order to display it on a Superset Dashboard? P.S. : the…
Jean Valet
  • 131
  • 1
  • 2
  • 7
4
votes
2 answers

How does REMOTE_USER Authentication Type works in apache superset?

I've been trying to authenticate with my Login Rest API instead of Other types. How to achieve this? Is REMOTE_USER authentication is the right way to do it? If so, can I get a sample code or documentation on this? Read the docs here but couldn't…
Femil Shajin
  • 1,768
  • 6
  • 24
  • 38
4
votes
2 answers

Formatting a number as a percentage in d3.js for Superset

I'm currently using Superset and trying to format the y-axis of a graph to show the number as a percentage. Values are 0.7, 0.75, 0.9, 1.2, 1.21 and so on. I'm looking to format these as 0.70%, 0.75%, 0.90%, 1.20%, 1.21% etc. I'm having trouble…
ah1
  • 71
  • 3
  • 9
4
votes
3 answers

how to add presto SQLalchemy URI to be connected in airbnb data visualization tool superset

i have both presto and superset setup. presto is working well, can be accessed by command: . /app/hadoop/setjdk8.sh;bin/presto-cli --server http://myserver:8070 --catalog hive --schema default And tested ok with a sql query select count(*) on a…
bronzels
  • 1,283
  • 2
  • 10
  • 16
4
votes
4 answers

Superset cannot connect to my MSSQL database

After installing Superset (open source software from Airbnb) on my virtual machine (RHEL, Linux 7.2-11), I cannot add my MSSQL database in the configuration page. Menu->Sources->Databases->Add In the SQLAlchemy URI field, I entered…
LaPalme
  • 339
  • 5
  • 16
4
votes
1 answer

Error installing superset on an anaconda distribution

Having a nightmare here, been trying for hours with no luck. I'm using anaconda with a virtual environment on python 3.4 (I want to use geopandas, can't use 3.5) on windows 10. This is superset by the way: https://github.com/airbnb/superset I also…
AndyMoore
  • 1,324
  • 2
  • 11
  • 18
3
votes
1 answer

Why an error occurs on apache superset "An error occurred while fetching table metadata/removing the table schema. Plscontact your administrator"?

I assigned the Gamma and Sqllab roles to users and granted schema and database access permissions to the Gamma role for specific tables. SQL queries can be executed in Sql Lab without any issues. However, when attempting to select or remove tables…
3
votes
1 answer

Can I have a bar chart that is both stacked and grouped?

I have a bar chart in Superset where I have two different columns configured under BREAKDOWN. Both columns divide the data into two parts, so I end up with four different breakdowns. Example: I have sales data for two different cities, and the sales…
anon
3
votes
1 answer

Add a new API endpoint with Flask AppBuilder in Superset (through Flask Blueprints)

I am using Superset 2.0.0 and I saw that it was possible to extend the API (i.e. add new endpoints using Flask Blueprints). I can add a simple endpoint with the code: # superset_config.py from greeting import greeting BLUEPRINTS = [greeting] #…
Nicolaz
  • 149
  • 1
  • 8