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
3
votes
1 answer

Dynamic setting the timestamp fields in superset dashboards

I'm building few dashboards in Apache superset. All my available timestamp fields are in UTC timezone. (for example fields are, class_start_time & class_end_time). I want that in the timezone the dashboard is opened all the timestamp fields will be…
Lily
  • 605
  • 3
  • 15
  • 31
3
votes
0 answers

Apache superset authorization logging

To be safe, we want to monitor user authorizations in apache superset. Example from documentation https://superset.apache.org/docs/installation/event-logging/ does not allow to see the ip address of the user and the result of…
l1terly_me
  • 31
  • 1
3
votes
0 answers

Apache Superset Dashboard import is failing with Invalid Command Error

I am able to successfully export the Superset dashboard however importing the same dashboard is resulting in the below error. It was working a few days back. Not sure what is causing the issue as I am not getting any specific error apart from the…
Pro
  • 305
  • 3
  • 13
3
votes
0 answers

How do I edit the config file for a superset installation on AWS?

I have installed Apache Superset on AWS using the quick start guide (https://aws-quickstart.github.io/quickstart-apache-superset/) and it is all working fine. The only issue I have is that my dataset is very large, so some queries take more than 60…
ss2019
  • 31
  • 1
3
votes
2 answers

Docker Superset Volumes - how to persist information

I have two docker-compose files. In one is mariadb in another superset mariadb: version: '2.4' services: mariadb: container_name: mariadb image: mariadb restart: always volumes: - ./mariadb-data:/var/lib/mysql …
Dom Rl
  • 35
  • 1
  • 6
3
votes
1 answer

My Superset cache is set to Redis, but I still get cache warning in logs

I am getting cache warnings in my log files and am not sure why. My cache override: CACHE_CONFIG = { 'CACHE_TYPE': 'RedisCache', 'CACHE_DEFAULT_TIMEOUT': 86400, 'CACHE_KEY_PREFIX': 'superset_', 'CACHE_REDIS_HOST': 'localhost', …
Pompey Magnus
  • 2,191
  • 5
  • 27
  • 40
3
votes
2 answers

How to remove the wording "metric" in apache superset "pivot tables v2"?

Inside the apache superset pivot v2 tables, the word "metric" appears between the columns (as in the image). I don't like it and my intention is to remove it. What can I do to remove or hide it?
3
votes
0 answers

How to add the same chart multiple times in one dashboard?

I'm struggling with reusing one chart multiple times in one dashboard in apache-superset. Is it possible to somehow reuse one chart several times in one dashboard with different values of filters applied? This would be very useful for viewing same…
3
votes
0 answers

Superset Configuring SSO with Active Directory

I have superset 1.3.1 installed on a rhel 7.5 server. I would like to set up SSO authorization to the Superset server for Active Directory users. Tell me, please, how to do it correctly?
SkOleg
  • 31
  • 2
3
votes
1 answer

How can I set a chart to always show description by default

If I define a description for a chart I can manually use the "Toggle chart description" to show the description for a given chart. How can I define on a per chart or global basis if the description should be visible de default?
rjlopes
  • 2,430
  • 4
  • 21
  • 23
3
votes
1 answer

How do I load gziped json data into table, using Spark SQL's CREATE TABLE Query

I want to connect Apache Superset with Apache Spark (I have Spark 3.1.2) and Query the data on Superset's SQL Lab using Apache Spark SQL. On spark's master, I started thrift server using this command spark-submit --class…
Rahul Prasad
  • 8,074
  • 8
  • 43
  • 49
3
votes
1 answer

Superset handling missing values in time series - difference between bar chart and line chart

I'm plotting a time series chart with missing values. The generated query looks like this: SELECT DATE_TRUNC('day', arrival_time) AS __timestamp, COUNT(*) AS count FROM public.data GROUP BY DATE_TRUNC('day', arrival_time); When plotting a…
Nicolas78
  • 5,124
  • 1
  • 23
  • 41
3
votes
1 answer

"export 'Metric' was not found in '@superset-ui/core' (ERROR in ./node_modules/@superset-ui/chart-controls/esm/types.js) Angular/React

I'm new to superset-ui and currently looking to use it in our Angular application, although this issue occurs for React as well. I just wanted to try out "@superset-ui/legacy-preset-chart-nvd3" components for now. To do that, I followed the usage…
Akash
  • 101
  • 1
  • 11
3
votes
2 answers

Missing MapBox Token when using Apache Superset with Docker

I've installed Apache Superset according to this official manual. I can create plots, connect to databases etc. without any problems, only if I want to plot latitude and longitude data with a mapbox or deck.gl plots, I get this warning and can't see…
maximusKarlson
  • 103
  • 1
  • 6
3
votes
2 answers

How to use Google Login with Apache Superset

Our team has implemented Apache Superset for a period of time. Now, we want to use the Google Login with this platform. However, after deliberately searching from a lot of sources, We are still unable to get this task done. We make a copy of…