I'm trying to load a Deltalake table in Python in a memory-bound environment (k8s Pod with memory limit) with Polars, I am getting an OOM exception when trying to do a scan_delta(...).head().collect()
.
I am unable to determine if predicate pushdown works and/or is implemented in Polars for Deltalake, or if my code is wrong.