-
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
Support result reuse in Athena data sources #7202
Conversation
@lucydodo @justinclift Could you consider merging this feature? |
It looks good, but since the version of the |
@lucydodo What else can I do to get this reviewed and merged? |
Sorry, I've been busy for a while and haven't had time to review it. I'll review and respond this weekend. |
I have reviewed the changelog from version 1.11.5 to 2.25.2 and found no changes that could cause issues. |
@lucydodo Thank you! |
* Support result reuse * Update pyathena to 2.25.2 * Separate options * Regenerate the Poetry lock file --------- Co-authored-by: SeongTae Jeong <[email protected]>
What type of PR is this?
Description
Currently, redash makes a query everytime the query page opens and it costs a lot if the query is too heavy.
On the other hand, there is a feature that efficiently uses query results in Athena.
https://docs.aws.amazon.com/athena/latest/ug/reusing-query-results.html
pyathena (>=2.18.0) supports the option.
https://github.com/laughingman7743/PyAthena/blob/6b8f0e94abd09115ba1277616ca84372e2f15d56/pyathena/common.py#L112-L113
It seems the reason of updating the major version is dropping python versions. and as far as I tried, queries work fine.
We may want to turn on/off the option per query but it will break the compatibility with the other data sources, so I made it a data source option. Could you consider adding this feature?
How is this tested?
Run an Athena query with this option with manually container image.
Related Tickets & Documents
N/A
Mobile & Desktop Screenshots/Recordings (if there are UI changes)