[KYUUBI #7129] Support PARQUET hive table pushdown filter#7130
Closed
flaming-archer wants to merge 1 commit intoapache:masterfrom
Closed
[KYUUBI #7129] Support PARQUET hive table pushdown filter#7130flaming-archer wants to merge 1 commit intoapache:masterfrom
flaming-archer wants to merge 1 commit intoapache:masterfrom
Conversation
Contributor
Author
|
like #7123 |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #7130 +/- ##
======================================
Coverage 0.00% 0.00%
======================================
Files 700 700
Lines 43435 43443 +8
Branches 5879 5881 +2
======================================
- Misses 43435 43443 +8 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
Author
|
@cfmcgrady please take a look at it. |
Contributor
Author
|
In our testing, the performance can be improved by 1.4 times |
pan3793
approved these changes
Jul 17, 2025
Member
|
Thanks, merged to master |
yangyuxia
pushed a commit
to yangyuxia/kyuubi
that referenced
this pull request
Sep 22, 2025
### Why are the changes needed? Previously, the `HiveScan` class was used to read data. If it is determined to be PARQUET type, the `ParquetScan` from Spark datasourcev2 can be used. `ParquetScan` supports pushfilter down, but `HiveScan` does not yet support it. The conversation can be controlled by setting `spark.sql.kyuubi.hive.connector.read.convertMetastoreParquet`. When enabled, the data source PARQUET reader is used to process PARQUET tables created by using the HiveQL syntax, instead of Hive SerDe. close apache#7129 ### How was this patch tested? added unit test ### Was this patch authored or co-authored using generative AI tooling? No Closes apache#7130 from flaming-archer/master_parquet_filterdown. Closes apache#7129 d7059dc [tian bao] Support PARQUET hive table pushdown filter Authored-by: tian bao <2011xuesong@gmail.com> Signed-off-by: Cheng Pan <chengpan@apache.org>
yangyuxia
pushed a commit
to yangyuxia/kyuubi
that referenced
this pull request
Nov 12, 2025
### Why are the changes needed? Previously, the `HiveScan` class was used to read data. If it is determined to be PARQUET type, the `ParquetScan` from Spark datasourcev2 can be used. `ParquetScan` supports pushfilter down, but `HiveScan` does not yet support it. The conversation can be controlled by setting `spark.sql.kyuubi.hive.connector.read.convertMetastoreParquet`. When enabled, the data source PARQUET reader is used to process PARQUET tables created by using the HiveQL syntax, instead of Hive SerDe. close apache#7129 ### How was this patch tested? added unit test ### Was this patch authored or co-authored using generative AI tooling? No Closes apache#7130 from flaming-archer/master_parquet_filterdown. Closes apache#7129 d7059dc [tian bao] Support PARQUET hive table pushdown filter Authored-by: tian bao <2011xuesong@gmail.com> Signed-off-by: Cheng Pan <chengpan@apache.org>
yangyuxia
pushed a commit
to yangyuxia/kyuubi
that referenced
this pull request
Nov 13, 2025
### Why are the changes needed? Previously, the `HiveScan` class was used to read data. If it is determined to be PARQUET type, the `ParquetScan` from Spark datasourcev2 can be used. `ParquetScan` supports pushfilter down, but `HiveScan` does not yet support it. The conversation can be controlled by setting `spark.sql.kyuubi.hive.connector.read.convertMetastoreParquet`. When enabled, the data source PARQUET reader is used to process PARQUET tables created by using the HiveQL syntax, instead of Hive SerDe. close apache#7129 ### How was this patch tested? added unit test ### Was this patch authored or co-authored using generative AI tooling? No Closes apache#7130 from flaming-archer/master_parquet_filterdown. Closes apache#7129 d7059dc [tian bao] Support PARQUET hive table pushdown filter Authored-by: tian bao <2011xuesong@gmail.com> Signed-off-by: Cheng Pan <chengpan@apache.org>
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.
Why are the changes needed?
Previously, the
HiveScanclass was used to read data. If it is determined to be PARQUET type, theParquetScanfrom Spark datasourcev2 can be used.ParquetScansupports pushfilter down, butHiveScandoes not yet support it.The conversation can be controlled by setting
spark.sql.kyuubi.hive.connector.read.convertMetastoreParquet. When enabled, the data source PARQUET reader is used to process PARQUET tables created by using the HiveQL syntax, instead of Hive SerDe.close #7129
How was this patch tested?
added unit test
Was this patch authored or co-authored using generative AI tooling?
No