getredash / redash

Make Your Company Data Driven. Connect to any data source, easily visualize, dashboard and share your data.
http://redash.io/
BSD 2-Clause "Simplified" License
26.49k stars 4.39k forks source link

Better support for large query results #78

Open arikfr opened 10 years ago

arikfr commented 10 years ago

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?).

natict commented 10 years ago

No pagination + Indicator + CSV download should be a good start :)

arikfr commented 10 years ago

yep, another optimization is to mark big data sets when we store the query result object.

arikfr commented 9 years ago

Relevant discussion: https://groups.google.com/forum/#!topic/redash-users/UbwvXewsJrQ

ChrisLocus commented 8 years ago

Anybody heard anything about any work on this front? Running into this now.

eshubhamgarg commented 7 years ago

@arikfr Do you have any updates on this one ? Like when can be expect a feature release

arikfr commented 7 years ago

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.

adfel70 commented 7 years ago

Hi, Can you explain what the bottleneck is? Thanks

bboe commented 7 years ago

@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?

arikfr commented 7 years ago

@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).

jesse-osiecki commented 7 years ago

@arikfr @bboe was a pull request ever made regarding this?

bboe commented 7 years ago

Not from my end. Development time for value ended up not being worth it.

antwan commented 7 years ago

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.

jezdez commented 6 years ago

This has been merged! ✨

arikfr commented 6 years ago

@jezdez this issue is about large query results and not a long list of queries :)

jezdez commented 6 years ago

Ugh, being able to read would clearly be an advantage 😬

changchichung commented 6 years ago

is this issue solved ? I gave same situation when return rows > 50K .

arikfr commented 6 years ago

@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.

koooge commented 6 years ago

+1 Version 5.0.1+b4851 on EC2 t2.small redash server cannot resnponse during its processing.

ismailsimsek commented 5 years ago

Version 5.0.1+b4851 on EC2 t2.small EC2 m3.large getting "redash Worker exited prematurely: signal 9 (SIGKILL)." our main requirement is ability to download large datasets

arikfr commented 5 years ago

@ismailsimsek try using a larger instance (depends on the dataset size you're trying to download).

ismailsimsek commented 5 years ago

@arikfr what do you think about adding pagination to _queryrunner? using server side cursor where database is handling the large result set. then client application can process the result in batches. This probably requires an message in the UI when the full result-set is not passed to UI.

Thanks for the great software btw.

arikfr commented 5 years ago

@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.

harveyrendell commented 5 years ago

@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.

diwu1989 commented 4 years ago

Can we set up a config for enforcing limit clause automatically? Many SQL IDEs do this by default to provide better user experience and prevent users from shooting themselves in the foot.

Default limit to 10k is a reasonable threshold. Nobody actually pages through 10k of results line by line anyways and their UI would stutter.

arikfr commented 4 years ago

Can we set up a config for enforcing limit clause automatically?

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).

syang61-dev commented 3 years ago

Can we set up a config for enforcing limit clause automatically?

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).

@arikfr

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).

susodapop commented 3 years ago

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 🤔

syang61-dev commented 3 years ago

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.

susodapop commented 3 years ago

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.

williswyf commented 2 years ago

Hi there, is there update on this issue? I still got this issue on v10.1. I just expect that my user is able to run query and download the big result set, and no need to catch it into postgresql.

susodapop commented 2 years ago

No update to share at this time. But we have not forgotten about this use case.

and no need to catch it into postgresql.

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.

lscapim commented 1 year ago

Hi, Is there update on this issue?

spapas commented 1 year ago

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 ?

guidopetri commented 1 year ago

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.

wtfiwtz commented 11 months ago

I think replacing the JSON encoder and using Flask streaming are good options. https://github.com/getredash/redash/blob/master/redash/utils/__init__.py#L107-L121 Flask stream_with_context - https://stackoverflow.com/questions/71991359/how-to-make-flask-stream-output-line-by-line Fixing the front-end pagination to convert to back-end pagination is a much larger piece of work. I've been planning to test this theory out but something else got a higher priority. I'll see how I go later this week or next.

See also https://github.com/getredash/redash/issues/6218

wtfiwtz commented 11 months ago

Here's a first attempt: https://github.com/orchestrated-io/redash/commit/7540768f2970a236dc681de304cc678e731ca0e3

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 send_file, stream_with_context, and the Python JSON encoder (ujson didn't work as you need custom encoding for fields such as dates) but they had a negligible impact on a 120k row Google Sheets data source (cached - ~10Mb).

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, Nigel

wtfiwtz commented 10 months ago

Here's a better version... it's a bit hacky but it does the job for now. https://github.com/orchestrated-io/redash/pull/2

wtfiwtz commented 8 months ago

If you do apply this, I also recommend upgrading gunicorn as you might see TCP disconnects when gunicorn goes to shutdown its workers after X requests have been processed. See https://github.com/getredash/redash/issues/5641#issuecomment-2008285008

zachliu commented 5 months ago

For query engines such as AWS Athena, I wish there will be a way to: