-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-23972][BUILD][SQL] Update Parquet to 1.10.0. #21070
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
26336a9
a599515
3e1f84c
93b8ee8
93f2a92
64907bc
66df4b6
ee2ffdd
270540f
6c9d47b
95ecde0
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 |
|---|---|---|
|
|
@@ -129,7 +129,7 @@ | |
| <!-- Version used for internal directory structure --> | ||
| <hive.version.short>1.2.1</hive.version.short> | ||
| <derby.version>10.12.1.1</derby.version> | ||
| <parquet.version>1.8.2</parquet.version> | ||
| <parquet.version>1.10.0</parquet.version> | ||
|
||
| <orc.version>1.4.3</orc.version> | ||
| <orc.classifier>nohive</orc.classifier> | ||
| <hive.parquet.version>1.6.0</hive.parquet.version> | ||
|
|
@@ -1778,6 +1778,12 @@ | |
| <artifactId>parquet-hadoop</artifactId> | ||
| <version>${parquet.version}</version> | ||
| <scope>${parquet.deps.scope}</scope> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>commons-pool</groupId> | ||
| <artifactId>commons-pool</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.parquet</groupId> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -345,7 +345,7 @@ object SQLConf { | |
| "snappy, gzip, lzo.") | ||
| .stringConf | ||
| .transform(_.toLowerCase(Locale.ROOT)) | ||
| .checkValues(Set("none", "uncompressed", "snappy", "gzip", "lzo")) | ||
| .checkValues(Set("none", "uncompressed", "snappy", "gzip", "lzo", "lz4", "brotli", "zstd")) | ||
|
||
| .createWithDefault("snappy") | ||
|
|
||
| val PARQUET_FILTER_PUSHDOWN_ENABLED = buildConf("spark.sql.parquet.filterPushdown") | ||
|
|
||
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.
(btw, don't forget to fix
spark/dev/deps/spark-deps-hadoop-3.1
Lines 184 to 190 in ce7ba2e
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.
Done.