-
Notifications
You must be signed in to change notification settings - Fork 21
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
Query consistently times out #954
Comments
@jasonthomas Can we see in the Celery log what may cause this? |
I didn't see anything specific in the logs, based on celery it looks like it was successful:
I also ran this query and it succeeded successfully and I can see the output.
That being said it took 33 seconds for this celery tasks to complete and save 1.5M+ rows from |
Requests like these are going to be slow and may timeout due the volume of rows that are being returned to be stored in redash's db. I wasn't able to replicate this specific issue so this is going to be difficult to troubleshoot. Can we limit the number of rows returned and/or aggregate the results here to limit the amount of data being stored as part of the query results? |
Unfortunately, in this specific case, I can't think of a workaround at the moment. The query is part of a tool that helps us get a list of all blocked add-ons. Since AMO doesn't store the information, we get all add-on blocklist patterns from kinto, get all add-on IDs from AMO and then check every ID against every pattern to see if it matches. |
Issue Summary
A summary of the issue and the browser/OS environment in which it occurs.
Steps to Reproduce
SELECT guid FROM addons WHERE guid IS NOT NULL;
After about 30s, the progress changes to "Loading results".
After about 1min, execution aborts with " Error running query: failed communicating with server. Please check your Internet connection and try again. "
Technical details:
The text was updated successfully, but these errors were encountered: