zhouyuan opened a new issue, #11383: URL: https://github.com/apache/incubator-gluten/issues/11383
### Description Velox recently add the bloom filter when doing hash probe: https://github.com/facebookincubator/velox/pull/15752 ``` /// Whether hash probe can generate any dynamic filter (including Bloom /// filter) and push down to upstream operators. static constexpr const char* kHashProbeDynamicFilterPushdownEnabled = "hash_probe_dynamic_filter_pushdown_enabled"; /// The maximum byte size of Bloom filter that can be generated from hash /// probe. When set to 0, no Bloom filter will be generated. To achieve /// optimal performance, this should not be too larger than the CPU cache size /// on the host. static constexpr const char* kHashProbeBloomFilterPushdownMaxSize = "hash_probe_bloom_filter_pushdown_max_size"; ``` Gluten should add these two necessary configurations for Velox backend ### Gluten version None -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
