Skip to content
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

Create QueryPreparer interface #18561

Merged
merged 3 commits into from
Oct 28, 2022

Conversation

jainxrohit
Copy link
Contributor

@jainxrohit jainxrohit commented Oct 25, 2022

Creating query preparer interface to support multiple analyzers. The basic idea is for engine to use analyzer agnostic concepts to support analyzer functionalities. In this change, we are leveraging query preparer interface to prepare the query. At this point, we are still relying on statement and BuiltInQueryPreparer from SQLQueryExecution state.

== RELEASE NOTES ==

General Changes
* Add ``CONTROL`` as a new ``QueryType``.  The CONTROL queryType represents statements of session control and transaction control types. 

@jainxrohit jainxrohit marked this pull request as ready for review October 25, 2022 18:01
@jainxrohit jainxrohit requested a review from a team as a code owner October 25, 2022 18:01
@jainxrohit jainxrohit force-pushed the rj_analyzer_refactoring branch from 2d52b10 to c7d6d5a Compare October 25, 2022 18:18
@jainxrohit jainxrohit force-pushed the rj_analyzer_refactoring branch 4 times, most recently from 9aaf607 to e28d182 Compare October 25, 2022 21:33
@jainxrohit jainxrohit force-pushed the rj_analyzer_refactoring branch 2 times, most recently from 4e3946c to 67042a9 Compare October 27, 2022 00:14
@jainxrohit jainxrohit requested a review from rschlussel October 27, 2022 00:16
@jainxrohit jainxrohit force-pushed the rj_analyzer_refactoring branch 2 times, most recently from 7547b7f to 10cb683 Compare October 27, 2022 02:01
@highker
Copy link
Contributor

highker commented Oct 27, 2022

Please cap the commit message to 72 characters per line.

1 similar comment
@highker
Copy link
Contributor

highker commented Oct 27, 2022

Please cap the commit message to 72 characters per line.

Copy link
Contributor

@highker highker left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm still reviewing; only skimmed through

import static java.util.Objects.requireNonNull;
import static java.util.stream.Collectors.joining;

public class BuiltInQueryPreparer
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

*/
package com.facebook.presto.sql.analyzer;

public enum AnalyzerType
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

@highker highker self-requested a review October 27, 2022 04:59
@jainxrohit jainxrohit force-pushed the rj_analyzer_refactoring branch 6 times, most recently from 0ef64c8 to dc8334c Compare October 27, 2022 21:41
Copy link
Contributor

@highker highker left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

overall LGTM % one big rollout concern

@@ -44,6 +44,12 @@
"hardConcurrencyLimit": 3,
"maxQueued": 4
},
{
"name": "transaction",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[major] This reminds me that the rollout of this commit will cause pretty big production regression. We are now going to query queries like set session. Do we have a safe rollout strategy?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is it possible to have data definition and transaction share a resource group? (i mean this is for test, so doesn't matter much, but was wondering about prod -- does the categorization change need to mean different resource groups)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch! We will make changes to the existing resource groups to account for this query type. We will make sure to account this for the next release.

@highker highker self-assigned this Oct 28, 2022
@rschlussel
Copy link
Contributor

we log the query type in the query completed event, and also it can be used for resource group configurations, so we should add a release note that we've added another kind of query type/ changed the query type for some existing queries.

@jainxrohit
Copy link
Contributor Author

we log the query type in the query completed event, and also it can be used for resource group configurations, so we should add a release note that we've added another kind of query type/ changed the query type for some existing queries.

I was planning to add a release note. However I am not sure about James comment, how it would cause production regression?

@jainxrohit jainxrohit force-pushed the rj_analyzer_refactoring branch from dc8334c to 68f75a6 Compare October 28, 2022 16:19
Using QueryType instead of statement class as key in the
QueryExecutionFactory.
We also added CONTROL as new QueryType to categorize statements
of transaction control and session control types.
@jainxrohit jainxrohit force-pushed the rj_analyzer_refactoring branch from 68f75a6 to 2c90a57 Compare October 28, 2022 16:50
Adding a QueryPreparer interface, all analyzers should implement this
interface to support query prepare functionality.
@jainxrohit jainxrohit force-pushed the rj_analyzer_refactoring branch from 2c90a57 to bf5a486 Compare October 28, 2022 17:08
@rschlussel rschlussel merged commit e97afc8 into prestodb:master Oct 28, 2022
@wanglinsong wanglinsong mentioned this pull request Jan 12, 2023
30 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants