Skip to content

Commit d2ae4ce

Browse files
committed
Upgrade Pinot version to 1.3.0 & move off of presto-pinot-driver
If implemented this will upgrade the Pinot API version to 1.3.0. It will also move off of the shaded presto-pinot-driver dependency.
1 parent 956978a commit d2ae4ce

File tree

10 files changed

+304
-243
lines changed

10 files changed

+304
-243
lines changed

pom.xml

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<dep.joda.version>2.13.1</dep.joda.version>
5959
<dep.tempto.version>1.55</dep.tempto.version>
6060
<dep.testng.version>7.5</dep.testng.version>
61-
<dep.lucene.version>8.11.3</dep.lucene.version>
61+
<dep.lucene.version>9.12.0</dep.lucene.version>
6262
<dep.assertj-core.version>3.8.0</dep.assertj-core.version>
6363
<dep.parquet.version>1.13.1</dep.parquet.version>
6464
<dep.nexus-staging-plugin.version>1.6.8</dep.nexus-staging-plugin.version>
@@ -67,7 +67,7 @@
6767
<dep.alluxio.version>313</dep.alluxio.version>
6868
<dep.slf4j.version>2.0.16</dep.slf4j.version>
6969
<dep.kafka.version>3.9.1</dep.kafka.version>
70-
<dep.pinot.version>0.11.0</dep.pinot.version>
70+
<dep.pinot.version>1.3.0</dep.pinot.version>
7171
<dep.druid.version>30.0.1</dep.druid.version>
7272
<dep.jaxb.version>2.3.1</dep.jaxb.version>
7373
<dep.hudi.version>0.14.0</dep.hudi.version>
@@ -80,12 +80,12 @@
8080
<dep.jackson.version>2.15.4</dep.jackson.version>
8181
<dep.j2objc.version>3.0.0</dep.j2objc.version>
8282
<dep.avro.version>1.11.4</dep.avro.version>
83-
<dep.commons.compress.version>1.26.2</dep.commons.compress.version>
83+
<dep.commons.compress.version>1.27.1</dep.commons.compress.version>
8484
<dep.protobuf-java.version>4.29.0</dep.protobuf-java.version>
8585
<dep.jetty.version>12.0.18</dep.jetty.version>
8686
<dep.netty.version>4.1.122.Final</dep.netty.version>
8787
<dep.reactor-netty.version>1.2.8</dep.reactor-netty.version>
88-
<dep.snakeyaml.version>2.0</dep.snakeyaml.version>
88+
<dep.snakeyaml.version>2.3</dep.snakeyaml.version>
8989
<dep.gson.version>2.12.1</dep.gson.version>
9090
<dep.commons.lang3.version>3.18.0</dep.commons.lang3.version>
9191
<dep.guice.version>6.0.0</dep.guice.version>
@@ -370,7 +370,7 @@
370370
<dependency>
371371
<groupId>commons-io</groupId>
372372
<artifactId>commons-io</artifactId>
373-
<version>2.16.1</version>
373+
<version>2.18.0</version>
374374
</dependency>
375375

376376
<dependency>
@@ -2005,7 +2005,7 @@
20052005
<dependency>
20062006
<groupId>commons-codec</groupId>
20072007
<artifactId>commons-codec</artifactId>
2008-
<version>1.17.0</version>
2008+
<version>1.17.2</version>
20092009
</dependency>
20102010

20112011
<dependency>
@@ -2220,22 +2220,16 @@
22202220
<version>${dep.kafka.version}</version>
22212221
</dependency>
22222222

2223-
<dependency>
2224-
<groupId>org.apache.pinot</groupId>
2225-
<artifactId>presto-pinot-driver</artifactId>
2226-
<version>${dep.pinot.version}</version>
2227-
</dependency>
2228-
22292223
<dependency>
22302224
<groupId>org.xerial.snappy</groupId>
22312225
<artifactId>snappy-java</artifactId>
2232-
<version>1.1.10.4</version>
2226+
<version>1.1.10.7</version>
22332227
</dependency>
22342228

22352229
<dependency>
22362230
<groupId>com.github.luben</groupId>
22372231
<artifactId>zstd-jni</artifactId>
2238-
<version>1.5.2-3</version>
2232+
<version>1.5.6-9</version>
22392233
</dependency>
22402234

22412235
<dependency>
@@ -2404,7 +2398,7 @@
24042398

24052399
<dependency>
24062400
<groupId>org.apache.lucene</groupId>
2407-
<artifactId>lucene-analyzers-common</artifactId>
2401+
<artifactId>lucene-analysis-common</artifactId>
24082402
<version>${dep.lucene.version}</version>
24092403
</dependency>
24102404

@@ -2417,7 +2411,7 @@
24172411
<dependency>
24182412
<groupId>org.locationtech.jts</groupId>
24192413
<artifactId>jts-core</artifactId>
2420-
<version>1.19.0</version>
2414+
<version>1.20.0</version>
24212415
</dependency>
24222416

24232417
<dependency>
@@ -2499,7 +2493,7 @@
24992493
<dependency>
25002494
<groupId>com.clearspring.analytics</groupId>
25012495
<artifactId>stream</artifactId>
2502-
<version>2.9.5</version>
2496+
<version>2.9.8</version>
25032497
</dependency>
25042498

25052499
<dependency>

presto-elasticsearch/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<dep.elasticsearch.version>7.17.27</dep.elasticsearch.version>
1717
<dep.log4j.version>2.24.3</dep.log4j.version>
1818
<air.check.skip-modernizer>true</air.check.skip-modernizer>
19+
<dep.lucene.version>8.11.3</dep.lucene.version>
1920
</properties>
2021

2122
<dependencies>

presto-main-base/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,7 @@
300300
<dependency>
301301
<groupId>org.apache.lucene</groupId>
302302
<artifactId>lucene-analyzers-common</artifactId>
303+
<version>8.11.3</version>
303304
</dependency>
304305

305306
<dependency>

0 commit comments

Comments
 (0)