Async chart not rendering
See original GitHub issueHello, I have tried to turn on GAQ on the latest helm/superset release (0.6.1, 1.5.0, respectively). When I try to run a query from a chart, the chart spins until it times out. However, I can see the query execute on the data warehouse and the results are returned to redis. In fact, if I refresh the chart page after seeing the load_chart_data_into_cache task complete successfully on the worker, then the chart pulls from redis and loads as expected. I believe that I’ve configured superset as outlined here.
Async queries are running as expected in sql labs.
How to reproduce the bug
Deploy superset to k8s using helm with the following config overrides:
configOverrides:
enable_gaq: |
GLOBAL_ASYNC_QUERIES_JWT_SECRET = env('GLOBAL_ASYNC_QUERIES_JWT_SECRET')
GLOBAL_ASYNC_QUERIES_REDIS_CONFIG = {
"port": env('REDIS_PORT'),
"host": env('REDIS_HOST'),
"password": env('REDIS_PASSWORD'),
"db": 0,
"ssl": False
}
FEATURE_FLAGS = { 'GLOBAL_ASYNC_QUERIES': True }
Expected results
I expect the chart to render results after the query completes.
Actual results
The chart never renders.
Screenshots

Environment
(please complete the following information):
- browser type and version: Firefox 99.0.1 (64-bit)
- superset version:
1.5.0 - python version:
3.8.12 - node.js version:
node -v - any feature flags active: Global async queries
Checklist
Make sure to follow these steps before submitting your issue - thank you!
- I have checked the superset logs for python stacktraces and included it here as text if there are any.
- I have reproduced the issue with at least the latest released version of superset.
- I have checked the issue tracker for the same issue and I haven’t found one similar.
Additional context
Add any other context about the problem here.
Issue Analytics
- State:
- Created a year ago
- Reactions:6
- Comments:8 (1 by maintainers)

Top Related StackOverflow Question
+1
+1, any update?