-
Notifications
You must be signed in to change notification settings - Fork 5.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
Create QueryPreparer interface #18561
Create QueryPreparer interface #18561
Conversation
2d52b10
to
c7d6d5a
Compare
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/AnalyzerClient.java
Outdated
Show resolved
Hide resolved
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/AnalyzerClient.java
Outdated
Show resolved
Hide resolved
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/AnalyzerClient.java
Outdated
Show resolved
Hide resolved
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/AnalyzerClient.java
Outdated
Show resolved
Hide resolved
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/AnalyzerClient.java
Outdated
Show resolved
Hide resolved
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/BuiltInQueryPreparer.java
Show resolved
Hide resolved
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/BuiltInQueryPreparer.java
Show resolved
Hide resolved
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/BuiltInQueryPreparer.java
Show resolved
Hide resolved
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/PreparedQuery.java
Show resolved
Hide resolved
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/QueryPreparer.java
Show resolved
Hide resolved
9aaf607
to
e28d182
Compare
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/AnalyzerClient.java
Outdated
Show resolved
Hide resolved
4e3946c
to
67042a9
Compare
7547b7f
to
10cb683
Compare
Please cap the commit message to 72 characters per line. |
1 similar comment
Please cap the commit message to 72 characters per line. |
There was a problem hiding this 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
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/AnalyzerProvider.java
Outdated
Show resolved
Hide resolved
import static java.util.Objects.requireNonNull; | ||
import static java.util.stream.Collectors.joining; | ||
|
||
public class BuiltInQueryPreparer |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/QueryPreparer.java
Show resolved
Hide resolved
*/ | ||
package com.facebook.presto.sql.analyzer; | ||
|
||
public enum AnalyzerType |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
presto-common/src/main/java/com/facebook/presto/common/resourceGroups/QueryType.java
Outdated
Show resolved
Hide resolved
0ef64c8
to
dc8334c
Compare
There was a problem hiding this 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
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/QueryPreparer.java
Outdated
Show resolved
Hide resolved
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/utils/StatementUtils.java
Outdated
Show resolved
Hide resolved
presto-common/src/main/java/com/facebook/presto/common/resourceGroups/QueryType.java
Outdated
Show resolved
Hide resolved
@@ -44,6 +44,12 @@ | |||
"hardConcurrencyLimit": 3, | |||
"maxQueued": 4 | |||
}, | |||
{ | |||
"name": "transaction", |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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)
There was a problem hiding this comment.
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.
presto-analyzer/src/main/java/com/facebook/presto/sql/analyzer/NativePreparedQuery.java
Outdated
Show resolved
Hide resolved
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? |
dc8334c
to
68f75a6
Compare
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.
68f75a6
to
2c90a57
Compare
Adding a QueryPreparer interface, all analyzers should implement this interface to support query prepare functionality.
2c90a57
to
bf5a486
Compare
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.