Skip to content

Commit 184ce68

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 6500aca commit 184ce68

File tree

10 files changed

+246
-242
lines changed

10 files changed

+246
-242
lines changed

pom.xml

Lines changed: 12 additions & 18 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,11 +80,11 @@
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.119.Final</dep.netty.version>
87-
<dep.snakeyaml.version>2.0</dep.snakeyaml.version>
87+
<dep.snakeyaml.version>2.3</dep.snakeyaml.version>
8888
<dep.gson.version>2.12.1</dep.gson.version>
8989
<dep.commons.lang3.version>3.18.0</dep.commons.lang3.version>
9090
<dep.guice.version>6.0.0</dep.guice.version>
@@ -369,7 +369,7 @@
369369
<dependency>
370370
<groupId>commons-io</groupId>
371371
<artifactId>commons-io</artifactId>
372-
<version>2.16.1</version>
372+
<version>2.18.0</version>
373373
</dependency>
374374

375375
<dependency>
@@ -1426,7 +1426,7 @@
14261426
<dependency>
14271427
<groupId>it.unimi.dsi</groupId>
14281428
<artifactId>fastutil</artifactId>
1429-
<version>8.5.2</version>
1429+
<version>8.5.15</version>
14301430
</dependency>
14311431

14321432
<dependency>
@@ -1992,7 +1992,7 @@
19921992
<dependency>
19931993
<groupId>commons-codec</groupId>
19941994
<artifactId>commons-codec</artifactId>
1995-
<version>1.17.0</version>
1995+
<version>1.17.2</version>
19961996
</dependency>
19971997

19981998
<dependency>
@@ -2207,22 +2207,16 @@
22072207
<version>${dep.kafka.version}</version>
22082208
</dependency>
22092209

2210-
<dependency>
2211-
<groupId>org.apache.pinot</groupId>
2212-
<artifactId>presto-pinot-driver</artifactId>
2213-
<version>${dep.pinot.version}</version>
2214-
</dependency>
2215-
22162210
<dependency>
22172211
<groupId>org.xerial.snappy</groupId>
22182212
<artifactId>snappy-java</artifactId>
2219-
<version>1.1.10.4</version>
2213+
<version>1.1.10.7</version>
22202214
</dependency>
22212215

22222216
<dependency>
22232217
<groupId>com.github.luben</groupId>
22242218
<artifactId>zstd-jni</artifactId>
2225-
<version>1.5.2-3</version>
2219+
<version>1.5.6-9</version>
22262220
</dependency>
22272221

22282222
<dependency>
@@ -2391,7 +2385,7 @@
23912385

23922386
<dependency>
23932387
<groupId>org.apache.lucene</groupId>
2394-
<artifactId>lucene-analyzers-common</artifactId>
2388+
<artifactId>lucene-analysis-common</artifactId>
23952389
<version>${dep.lucene.version}</version>
23962390
</dependency>
23972391

@@ -2404,7 +2398,7 @@
24042398
<dependency>
24052399
<groupId>org.locationtech.jts</groupId>
24062400
<artifactId>jts-core</artifactId>
2407-
<version>1.19.0</version>
2401+
<version>1.20.0</version>
24082402
</dependency>
24092403

24102404
<dependency>
@@ -2486,7 +2480,7 @@
24862480
<dependency>
24872481
<groupId>com.clearspring.analytics</groupId>
24882482
<artifactId>stream</artifactId>
2489-
<version>2.9.5</version>
2483+
<version>2.9.8</version>
24902484
</dependency>
24912485

24922486
<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)