MBRGA opened a new issue #18635: URL: https://github.com/apache/superset/issues/18635
**Is your feature request related to a problem? Please describe.** SQL Lab doesn't handle large results sets gracefully due to storing them in the redux state, which gets persisted in local storage. Remote persistence is an option, but this is not always practical to enable depending on the backend and I imagine would still be pretty inefficient anyway. **Describe the solution you'd like** It should be possible to deal with larger results sets locally. The solution that has come to mind is to persist the query results with the IndexedDB API instead of WebStorage. A key to the IndexedDB data could be stored in the redux state instead. **Describe alternatives you've considered** The only other option that comes to mind is to not persist large query result sets at all. **Additional context** -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
