How does Daft do logical optimization? #2626
Answered
by
jaychia
htcd-subham
asked this question in
Q&A
-
== Unoptimized Logical Plan ==
== Optimized Logical Plan ==
== Physical Plan ==
How did Daft did this optimization? |
Beta Was this translation helpful? Give feedback.
Answered by
jaychia
Aug 7, 2024
Replies: 1 comment
-
Hi! Daft does filter predicate pushdowns into the scan. This allows us to perform filtering as we read data, making it much more memory efficient :) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jaychia
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi! Daft does filter predicate pushdowns into the scan. This allows us to perform filtering as we read data, making it much more memory efficient :)