-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Better support for large query results #78
Comments
No pagination + Indicator + CSV download |
yep, another optimization is to mark big data sets when we store the query result object. |
Relevant discussion: https://groups.google.com/forum/#!topic/redash-users/UbwvXewsJrQ |
Anybody heard anything about any work on this front? Running into this now. |
@arikfr Do you have any updates on this one ? Like when can be expect a feature release |
It's very low priority compared to other stuff, as usually you don't need large result sets in Redash. So far on work was done on this one. |
Hi, |
@arikfr how open would you be to a pull request in this area? I have little knowledge of Redash internals, however, we would like to solve the issue and may be able to throw some resources at it if we can work to get any changes incorporated into the project. Do you have a ballpark estimate on the amount of effort it would require to detect a large result set, and offer a download? |
@bboe how open? very much :) this is low priority for me, but I definitely want to better handle this. It's hard to give an estimate without looking into this in more detail & understanding what kind of solution you want to achieve. Shoot me an email and let's talk further (arik at redash io). |
Not from my end. Development time for value ended up not being worth it. |
Value is to use redash to export/browse large sets of data. Currently this is only suitable for statistics generation. A quick workaround would be to add an option truncate data on the backend (after 1000 entries) so users can still hit the button "export" without laggy UI due to massive JSON being parsed. |
This has been merged! ✨ |
@jezdez this issue is about large query results and not a long list of queries :) |
Ugh, being able to read would clearly be an advantage 😬 |
is this issue solved ? I gave same situation when return rows > 50K . |
@changchichung unfortunately not yet. Although if you don't have much more than 50K, maybe just giving more memory to Redash will resolve your issue. |
+1 |
Version 5.0.1+b4851 on EC2 t2.small EC2 m3.large |
@ismailsimsek try using a larger instance (depends on the dataset size you're trying to download). |
@arikfr what do you think about adding pagination to query_runner? using server side cursor where database is handling the large result set. then client application can process the result in batches. Thanks for the great software btw. |
@ismailsimsek pagination/server side cursors won't help without changing how we store the data, because we can't stream the data into Postgres (where we currently store results cache). Also it won't help with serving the results to the browser, because we serve the results to the browser from the cache. It will help once we change how we store the results and will significantly reduce the memory footprint of the workers. |
@arikfr I've been following this issue and I'm keen to contribute back if possible. We've had to deal with bad queries locking up our whole Redash service and would like a way to limit the maximum response sizes that are returned, (either response size in memory or row count). Could a minimum solution to this simply be adding a configuration option to set a maximum query size, and fail safely if it is exceeded. Some use-cases have been mentioned that include paging the query results into the database and I'm interested to hear how these might be made available for download e.g. as csv. |
Can we set up a config for enforcing limit clause automatically? Default limit to 10k is a reasonable threshold. Nobody actually pages through 10k of results line by line anyways and their UI would stutter. |
Yes.. just need to find a way to do it in a "scalable" way for all the data sources (not all of them have to support it though). |
Can we make the result payload ‘paginated’ and have a default page size of 1000 rows? Major ‘big data’ query engines seem to have such nob to control, can we borrow the idea here? API May look something like the following: GET queries/{queryID}?page=N&pageSize=1000 the above api will make the backend execute the corresponding SQL statement on top of the cache Isn’t this something a ‘scalable’ solution? If it is, I’d be happy to see how could I help (I am simply a user running into this situation now). |
I agree pagination makes sense. But we store cached results as serialised JSON today. So even if we fetch 1000 records at a time, each request would deserialise the entire result before plucking some some rows and returning them. This is fine for result sets <50k rows. But if a user runs a query with 1m rows the serialisation overhead would balloon 🤔 |
For results with 1m rows, maybe we could have the result (BI result cache) chunked and store those chunks. If the community is serious about working out a solution, please let me know and I'd like to see how I could help. |
We're not going to work on this until at least after the V10 release later this summer. Later this year we'll introduce some processes for improving work planning with the OSS community as we don't want to see this work stagnate. I'll ping this issue once that channel is available. |
Hi there, |
No update to share at this time. But we have not forgotten about this use case.
The results are always cached. Because running the query and downloading results are distinct tasks. Postgres is where Redash saves the state (query result) between these tasks. We can't skip the cache without a significant redesign. |
Hi, |
Hello friends, this issue is like 10 years old. Will anybody give any love to this or we'll wait until it gets a driver's license ? |
Since our community-led launch, we're all doing this as a side project, so priorities may be different. I'd happily accept a PR though. |
I think replacing the JSON encoder and using Flask streaming are good options. See also #6218 |
Here's a first attempt: orchestrated-io@7540768 You'll have to excuse my React skills, I haven't got that part correct yet. This just downloads 1000 rows at first, and then attempts to refresh the query result table (visualization) with the additional data when it arrives later. I attempted to use Removing the whitespace from JSON did help a bit - as it reduces the file size by about 1/6th. I'll have another go at the React component later. Cheers, |
Here's a better version... it's a bit hacky but it does the job for now. |
If you do apply this, I also recommend upgrading |
For query engines such as AWS Athena, I wish there will be a way to:
|
If a query has large result (~50K rows) it will make the UI to get stuck. We need to detect large results sets and handle them differently (server side pagination?).
The text was updated successfully, but these errors were encountered: