Rich-T-kid opened a new issue, #25512: URL: https://github.com/apache/datafusion/issues/25512
`FilterExec` currently calls `filter_record_batch` and then pushes the result into `LimitedBatchCoalescer`, materializing an intermediate filtered `RecordBatch` on every batch. Arrow's `BatchCoalescer` exposes `push_batch_with_filter` which can fuse the two steps and avoid that allocation when its internal conditions are met. `LimitedBatchCoalescer` should expose the same API so `FilterExec` can use it directly. -- 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]
