Error while changing data source in chart
See original GitHub issueI am getting an error while changing data source in chart after selecting new data source
Expected results
Data source should get changed to chosen source.
Actual results
Message “An error occurred”
Screenshots
Environment
- superset version: 0.30.0
- python version: 3.6.9 `
Checklist
Make sure these boxes are checked 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.
Issue Analytics
- State:
- Created 4 years ago
- Comments:31 (11 by maintainers)
Top Results From Across the Web
Error while changing data source in chart · Issue #8686 - GitHub
I am getting an error while changing data source in chart after selecting new data source. Expected results. Data source should get changed ......
Read more >Handling data source errors (Power Query) - Microsoft Support
Understanding Power Query errors Queries rely on table and column names to shape data in almost every step. Avoid changing or removing original...
Read more >Unable to change datasource in charts in Superset
In charts, there is an option to "change datasource" but when I click it gives an error "An error occurred". In production server...
Read more >How to Troubleshoot and Fix Excel Pivot Table Errors
1) Locate Pivot Table Data Source · Select any cell in the pivot table. · On the Ribbon, click the PivotTable Analyze tab...
Read more >Correcting the Source Reference not Valid Error in a Pivot Table
Check the Excel file name. If it contains any square brackets, rename the file and remove the brackets. Example: Below is an example...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I resolved issue by adding this to superset config
ENABLE_PROXY_FIX = True
and configuring nginx like this
These lines do the trick proxy_set_header X-Forwarded-SSL on; proxy_set_header X-Forwarded-Proto https;
I’m also experiencing this on
0.36.0
. My issue appears related to this one https://github.com/apache/incubator-superset/issues/8686 in that I’m getting a JavaScript console error:However I have applied every workaround, including setting
ENABLE_PROXY_FIX
andPROXY_FIX_CONFIG
insuperset_config.py
as well as validating theX-Forwarded-Proto
and other headers are set and it doesn’t seem to resolve the issue.I am running superset on HTTPS behind an nginx reverse proxy.