-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Enable parquet pushdown_filter by default #12524
Conversation
This is a fascinating result. Som of the queries become crazy fast (the ones with selective predicates) but some become slower Query1 SELECT COUNT(*) FROM hits WHERE "AdvEngineID" <> 0;
Query 20:
I need to spend some time looking at the queries that got slower in more detail TPCH also shows many queries getting slower:
|
Thank you for your contribution. Unfortunately, this pull request is stale because it has been open 60 days with no activity. Please remove the stale label or comment or this will be closed in 7 days. |
Draft as I am:
Which issue does this PR close?
Closes #3463
Rationale for this change
Now that #4028 is completed thanks to @itsjunetime in #12135 we do not re-apply the filter twice it may be possible to enable filter pushdown for ParquetExec
in all cases and get faster performance.
What changes are included in this PR?
Are these changes tested?
Yes, functionally by CI
Are there any user-facing changes?
Performance:
(RUNNING)