-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Upgrade Pinot Connector Libraries to 0.8.0 #9098
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
Changes from all commits
0eb49f2
2f0275e
ad0a5d7
1fb2ff2
f02d3fe
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 |
|---|---|---|
|
|
@@ -14,7 +14,7 @@ | |
|
|
||
| <properties> | ||
| <air.main.basedir>${project.parent.basedir}</air.main.basedir> | ||
| <dep.pinot.version>0.6.0</dep.pinot.version> | ||
| <dep.pinot.version>0.8.0</dep.pinot.version> | ||
|
hashhar marked this conversation as resolved.
|
||
| </properties> | ||
|
|
||
| <dependencyManagement> | ||
|
|
@@ -103,12 +103,6 @@ | |
| <artifactId>guice</artifactId> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
| <groupId>com.yammer.metrics</groupId> | ||
| <artifactId>metrics-core</artifactId> | ||
| <version>2.2.0</version> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
| <groupId>commons-codec</groupId> | ||
| <artifactId>commons-codec</artifactId> | ||
|
|
@@ -325,10 +319,18 @@ | |
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-annotations</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>jakarta.ws.rs</groupId> | ||
| <artifactId>jakarta.ws.rs-api</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>javax.validation</groupId> | ||
| <artifactId>validation-api</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.glassfish.hk2.external</groupId> | ||
| <artifactId>jakarta.inject</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.apache.lucene</groupId> | ||
| <artifactId>lucene-analyzers-common</artifactId> | ||
|
|
@@ -340,6 +342,28 @@ | |
| </exclusions> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
| <groupId>org.apache.pinot</groupId> | ||
| <artifactId>pinot-segment-local</artifactId> | ||
| <version>${dep.pinot.version}</version> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>org.apache.lucene</groupId> | ||
| <artifactId>lucene-analyzers-common</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.apache.lucene</groupId> | ||
| <artifactId>lucene-core</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
| <groupId>org.apache.pinot</groupId> | ||
| <artifactId>pinot-segment-spi</artifactId> | ||
| <version>${dep.pinot.version}</version> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
| <groupId>org.apache.pinot</groupId> | ||
| <artifactId>pinot-spi</artifactId> | ||
|
|
@@ -382,6 +406,13 @@ | |
| <scope>runtime</scope> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
| <groupId>org.apache.pinot</groupId> | ||
| <artifactId>pinot-yammer</artifactId> | ||
|
hashhar marked this conversation as resolved.
Outdated
|
||
| <version>${dep.pinot.version}</version> | ||
| <scope>runtime</scope> | ||
|
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. how are we getting this during runtime?
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. shall we make a noop implementation for this pinot-metrics interface ?
Member
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.
Required by the PinotQueryClient which requires PinotMetricsFactory. Would it be ok to leave it, so that we can have broker metrics? The worker functions like a broker without a reducer service (soon we will put that in also). wdyt? |
||
| </dependency> | ||
|
|
||
| <!-- Trino SPI --> | ||
| <dependency> | ||
| <groupId>io.trino</groupId> | ||
|
|
||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.