[SPARK-39634][SQL] Allow file splitting in combination with row index generation#40728
Closed
vkorukanti wants to merge 2 commits intoapache:masterfrom
Closed
[SPARK-39634][SQL] Allow file splitting in combination with row index generation#40728vkorukanti wants to merge 2 commits intoapache:masterfrom
vkorukanti wants to merge 2 commits intoapache:masterfrom
Conversation
|
We're closing this PR because it hasn't been updated in a while. This isn't a judgement on the merit of the PR in any way. It's just a way of keeping the PR queue manageable. |
|
Hi @vkorukanti, this is an important performance improvement for using the row index from Parquet. Is the PR targeted for Spark 3.5? |
Member
Author
|
@yihua Rebased the PR. If possible, it would be good to include this in the Spark 3.5 release. |
|
@vkorukanti @ala Great, thanks! |
cloud-fan
approved these changes
Jul 21, 2023
Contributor
|
thanks, merging to master/3.5! |
cloud-fan
pushed a commit
that referenced
this pull request
Jul 21, 2023
… generation ### What changes were proposed in this pull request? - Parquet version `1.13.1` has a fix for [PARQUET-2161](https://issues.apache.org/jira/browse/PARQUET-2161) which allows splitting the parquet files when row index metadata column is selected. Currently the file splitting is disabled. Enable file splitting with row index column. ### Why are the changes needed? Splitting parquet files allows better parallelization when row index metadata column is selected. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? Uncomment the existing unittests. Closes #40728 from vkorukanti/SPARK-39634. Authored-by: Venki Korukanti <venki.korukanti@gmail.com> Signed-off-by: Wenchen Fan <wenchen@databricks.com> (cherry picked from commit 679ea56) Signed-off-by: Wenchen Fan <wenchen@databricks.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changes were proposed in this pull request?
1.13.1has a fix for PARQUET-2161 which allows splitting the parquet files when row index metadata column is selected. Currently the file splitting is disabled. Enable file splitting with row index column.Why are the changes needed?
Splitting parquet files allows better parallelization when row index metadata column is selected.
Does this PR introduce any user-facing change?
No
How was this patch tested?
Uncomment the existing unittests.