-
Notifications
You must be signed in to change notification settings - Fork 29k
[WIP][SPARK-29018][SQL] Implement Spark Thrift Server with it's own code base on PROTOCOL_VERSION_V9 #25721
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
[WIP][SPARK-29018][SQL] Implement Spark Thrift Server with it's own code base on PROTOCOL_VERSION_V9 #25721
Changes from all commits
8c17cbe
b5e7f69
8b9bdd1
16e8eaf
28813f8
60415cd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -77,6 +77,10 @@ | |
| <groupId>${hive.group}</groupId> | ||
| <artifactId>hive-beeline</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>${hive.group}</groupId> | ||
| <artifactId>hive-service</artifactId> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Or is it that we now depend on it just so that Hive JDBC client can work?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
yes, beeline rely on hive-beeline -> hive-jdbc -> hive-service. |
||
| </dependency> | ||
| <!-- Explicit listing hive-contrib and hive-hcatalog-core. Otherwise the maven test fails. --> | ||
| <dependency> | ||
| <groupId>${hive.group}</groupId> | ||
|
|
@@ -151,9 +155,7 @@ | |
| </goals> | ||
| <configuration> | ||
| <sources> | ||
| <source>v${hive.version.short}/src/gen/java</source> | ||
| <source>v${hive.version.short}/src/main/java</source> | ||
| <source>v${hive.version.short}/src/main/scala</source> | ||
| <source>src/gen/java</source> | ||
| </sources> | ||
| </configuration> | ||
| </execution> | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 thought that this is cutting away dependency on Hive?
Also, does it need to be defined in root pom.xml? (genuinely asking: I know little about maven)
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.
Ok, I see actually from the description that it is for beeline and Hive JDBC client... Would be nice if that dependency changes could be inside hive-thriftserver, but like I said, I don't know much about maven...
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.
We just import this and use it for beeline. Don't need to spend more time dealing with version dependencies