-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Add Presto Pinot Connector #13413
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
Add Presto Pinot Connector #13413
Changes from all commits
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 |
|---|---|---|
|
|
@@ -61,6 +61,15 @@ | |
| <dep.nexus-staging-plugin.version>1.6.8</dep.nexus-staging-plugin.version> | ||
| <dep.asm.version>6.2.1</dep.asm.version> | ||
| <dep.gcs.version>1.9.17</dep.gcs.version> | ||
| <dep.httpcore.version>4.4.6</dep.httpcore.version> | ||
| <dep.httpclient.version>4.5.3</dep.httpclient.version> | ||
| <dep.yammer.version>2.2.0</dep.yammer.version> | ||
| <dep.fastjson.version>1.1.24</dep.fastjson.version> | ||
|
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. Use jackson or smile for json parser |
||
| <dep.netty.version>3.10.6.Final</dep.netty.version> | ||
|
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. There are too many dependencies. @wenleix @hellium01, could you help taking a look if there is anything we could remove? For example, is it possible to use
Member
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. Instead of trying to force the specific version module / project wise - the pinot client has to be shaded (see https://github.com/prestodb/presto-cassandra-server, https://github.com/prestodb/presto-cassandra-driver) |
||
| <dep.netty-all.version>4.1.28.Final</dep.netty-all.version> | ||
| <dep.validation-api.version>2.0.1.Final</dep.validation-api.version> | ||
|
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. Remove this line; |
||
| <dep.jersey-core.version>2.28</dep.jersey-core.version> | ||
| <dep.pinot.version>0.1.0</dep.pinot.version> | ||
|
|
||
| <!-- | ||
| America/Bahia_Banderas has: | ||
|
|
@@ -138,6 +147,7 @@ | |
| <module>presto-proxy</module> | ||
| <module>presto-kudu</module> | ||
| <module>presto-elasticsearch</module> | ||
| <module>presto-pinot</module> | ||
| </modules> | ||
|
|
||
| <dependencyManagement> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| connector.name=pinot | ||
|
||
| zookeeper-uri=localhost:2181 | ||
| pinot-cluster=PinotCluster | ||
| controller-url=localhost:9000 | ||
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.
Let's use airlift library for http clients