-
Notifications
You must be signed in to change notification settings - Fork 169
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
Add support for bloom_filter_agg #846
Comments
I can take this up if more details are provided :) |
We need to implement an equivalent of Spark's |
ok, taking this up. |
Accumulating some notes for this. Here's the Spark design doc on the feature: |
It looks like we already have the filter support thanks to #179. |
BloomFilterAggregate is only supported by ObjectHashAggregate or SortAggregate. But in Comet, we only support HashAggregate so far. |
What is the problem the feature request solves?
Some TPC-H queries use
bloom_filter_agg
, and Comet does not have a native implementation yet.A workaround is to set
spark.sql.optimizer.runtime.bloomFilter.enabled=false
.Describe the potential solution
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: