This is an automated email from the ASF dual-hosted git repository. xiangfu pushed a commit to branch release-1.3.0-hdfs-patch in repository https://gitbox.apache.org/repos/asf/pinot.git
commit d15db5c135e361f73fad89137e6de5b26ceed74e Author: Minwoo Jung <[email protected]> AuthorDate: Fri Mar 7 16:43:20 2025 +0900 Fix HDFS as Deep Storage issue by adjusting dependencies in pom.xml (#15215) (#15216) --- pinot-plugins/pinot-file-system/pinot-hdfs/pom.xml | 2 +- pinot-plugins/pinot-input-format/pinot-orc/pom.xml | 2 +- pinot-plugins/pinot-input-format/pinot-parquet/pom.xml | 2 +- pom.xml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pinot-plugins/pinot-file-system/pinot-hdfs/pom.xml b/pinot-plugins/pinot-file-system/pinot-hdfs/pom.xml index 74ed30ac4c..278eba04a7 100644 --- a/pinot-plugins/pinot-file-system/pinot-hdfs/pom.xml +++ b/pinot-plugins/pinot-file-system/pinot-hdfs/pom.xml @@ -49,7 +49,7 @@ </dependency> <dependency> <groupId>org.apache.hadoop.thirdparty</groupId> - <artifactId>hadoop-shaded-protobuf_3_21</artifactId> + <artifactId>hadoop-shaded-protobuf_3_25</artifactId> </dependency> </dependencies> diff --git a/pinot-plugins/pinot-input-format/pinot-orc/pom.xml b/pinot-plugins/pinot-input-format/pinot-orc/pom.xml index 962623d39c..a7e0b0f5d5 100644 --- a/pinot-plugins/pinot-input-format/pinot-orc/pom.xml +++ b/pinot-plugins/pinot-input-format/pinot-orc/pom.xml @@ -66,7 +66,7 @@ </dependency> <dependency> <groupId>org.apache.hadoop.thirdparty</groupId> - <artifactId>hadoop-shaded-protobuf_3_21</artifactId> + <artifactId>hadoop-shaded-protobuf_3_25</artifactId> </dependency> <dependency> <groupId>org.apache.hive</groupId> diff --git a/pinot-plugins/pinot-input-format/pinot-parquet/pom.xml b/pinot-plugins/pinot-input-format/pinot-parquet/pom.xml index ff8cafd826..bdd04a1df4 100644 --- a/pinot-plugins/pinot-input-format/pinot-parquet/pom.xml +++ b/pinot-plugins/pinot-input-format/pinot-parquet/pom.xml @@ -63,7 +63,7 @@ </dependency> <dependency> <groupId>org.apache.hadoop.thirdparty</groupId> - <artifactId>hadoop-shaded-protobuf_3_21</artifactId> + <artifactId>hadoop-shaded-protobuf_3_25</artifactId> </dependency> <!-- Used for Parquet Writer in tests --> diff --git a/pom.xml b/pom.xml index b8a0e112be..30bef7b069 100644 --- a/pom.xml +++ b/pom.xml @@ -1371,8 +1371,8 @@ </dependency> <dependency> <groupId>org.apache.hadoop.thirdparty</groupId> - <artifactId>hadoop-shaded-protobuf_3_21</artifactId> - <version>1.2.0</version> + <artifactId>hadoop-shaded-protobuf_3_25</artifactId> + <version>1.3.0</version> </dependency> <!-- Metrics --> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
