-
Notifications
You must be signed in to change notification settings - Fork 2.5k
[HUDI-9273] Upgrade Parquet to 1.15.1 to address CVE-2025-30065 #13315
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
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 |
|---|---|---|
|
|
@@ -2431,7 +2431,7 @@ | |
| hudi-hadoop-mr, for ex). Since these Hudi modules might be used from w/in the execution engine(s) | ||
| bringing these file-formats as dependencies as well, we need to make sure that versions are | ||
| synchronized to avoid classpath ambiguity --> | ||
| <parquet.version>1.13.1</parquet.version> | ||
| <parquet.version>1.15.1</parquet.version> | ||
| <orc.spark.version>1.9.1</orc.spark.version> | ||
| <avro.version>1.11.4</avro.version> | ||
| <antlr.version>4.9.3</antlr.version> | ||
|
|
@@ -2489,7 +2489,7 @@ | |
| hudi-hadoop-mr, for ex). Since these Hudi modules might be used from w/in the execution engine(s) | ||
| bringing these file-formats as dependencies as well, we need to make sure that versions are | ||
| synchronized to avoid classpath ambiguity --> | ||
| <parquet.version>1.12.2</parquet.version> | ||
| <parquet.version>1.15.1</parquet.version> | ||
| <orc.spark.version>1.7.8</orc.spark.version> | ||
| <avro.version>1.11.4</avro.version> | ||
| <antlr.version>4.8</antlr.version> | ||
|
|
@@ -2529,7 +2529,7 @@ | |
| hudi-hadoop-mr, for ex). Since these Hudi modules might be used from w/in the execution engine(s) | ||
| bringing these file-formats as dependencies as well, we need to make sure that versions are | ||
| synchronized to avoid classpath ambiguity --> | ||
| <parquet.version>1.12.3</parquet.version> | ||
| <parquet.version>1.15.1</parquet.version> | ||
| <orc.spark.version>1.8.3</orc.spark.version> | ||
| <avro.version>1.11.4</avro.version> | ||
| <antlr.version>4.9.3</antlr.version> | ||
|
|
@@ -2579,7 +2579,7 @@ | |
| hudi-hadoop-mr, for ex). Since these Hudi modules might be used from w/in the execution engine(s) | ||
| bringing these file-formats as dependencies as well, we need to make sure that versions are | ||
| synchronized to avoid classpath ambiguity --> | ||
| <parquet.version>1.13.1</parquet.version> | ||
| <parquet.version>1.15.1</parquet.version> | ||
|
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. is the version backward compatible?
Contributor
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. I couldn't figure out or find any mention of backward compatibility for this version with older versions. However, I noticed that adding this version does cause failures because now it is dependent on other parquet packages
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. yeah, but still, thanks for the contribution, is the fix a blocker for you?
Contributor
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. No problem. It is not a blocker for me, I could fix errors like the below one by shading the required parquet packages for spark-bundle for my usecase. I wanted to contribute the same change but I see the same error in the tests which is a bit confusing 😅 |
||
| <orc.spark.version>1.9.1</orc.spark.version> | ||
| <avro.version>1.11.4</avro.version> | ||
| <antlr.version>4.9.3</antlr.version> | ||
|
|
||
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.
Unfortunately this cannot be changed and the parquet version has to be aligned with What Spark uses in each Spark version. Otherwise there can be compatibility issues.
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.
Okay. Thank you for the review!